]> git.proxmox.com Git - mirror_xterm.js.git/blame - README.md
Merge pull request #411 from sourcelair/issue-#408-tslint
[mirror_xterm.js.git] / README.md
CommitLineData
dd93e62a 1# xterm.js
51946a73 2
5cbc2f0e 3[![xterm.js build status](https://api.travis-ci.org/sourcelair/xterm.js.svg)](https://travis-ci.org/sourcelair/xterm.js) [![Gitter](https://badges.gitter.im/sourcelair/xterm.js.svg)](https://gitter.im/sourcelair/xterm.js?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
ab1526b0 4
7e905763 5Xterm.js is a terminal front-end component written in JavaScript that works in the browser.
561fc59d 6
0a74b9aa 7It enables applications to provide fully featured terminals to their users and create great development experiences.
561fc59d 8
7e905763
PK
9## Features
10- **Text-based application support**: Use xterm.js to work with applications like `bash`, `git` etc.
11- **Curses-based application support**: Use xterm.js to work with applications like `vim`, `tmux` etc.
12- **Mouse events support**: Xterm.js captures mouse events like click and scroll and passes them to the terminal's back-end controlling process
13- **CJK (Chinese, Japanese, Korean) character support**: Xterm.js renders CJK characters seamlessly
14- **IME support**: Insert international (including CJK) characters using IME input with your keyboard
15- **Self-contained library**: Xterm.js works on its own. It does not require any external libraries like jQuery or React to work
0a74b9aa 16- **Modular, event-based API**: Lets you build addons and themes with ease
561fc59d 17
7e905763
PK
18## What xterm.js is not
19- Xterm.js is not a terminal application that you can download and use on your computer
20- Xterm.js is not `bash`. Xterm.js can be connected to processes like `bash` and let you interact with them (provide input, receive output)
21
22## Real-world uses
23Xterm.js is used in several world-class applications to provide great terminal experiences.
24
25- [**SourceLair**](https://www.sourcelair.com/): In-browser IDE that provides its users with fully-featured Linux terminals based on xterm.js
68b012ca 26- [**Microsoft Visual Studio Code**](http://code.visualstudio.com/): Modern, versatile and powerful open source code editor that provides an integrated terminal based on xterm.js
771642d1 27- [**ttyd**](https://github.com/tsl0922/ttyd): A command-line tool for sharing terminal over the web, with fully-featured terminal emulation based on xterm.js
7e905763
PK
28
29Do you use xterm.js in your application as well? Please [open a Pull Request](https://github.com/sourcelair/xterm.js/pulls) to include it here. We would love to have it in our list.
74848936 30
f3db84de
DI
31## Browser Support
32
7e905763 33Since xterm.js is typically implemented as a developer tool, only modern browsers are supported officially. Here is a list of the versions we aim to support:
2c810ce7 34
b61e81d5
DI
35- Chrome 48+
36- Edge 13+
37- Firefox 44+
38- Internet Explorer 11+
39- Opera 35+
40- Safari 8+
f3db84de 41
7e905763 42Xterm.js works seamlessly in Electron apps and may even work on earlier versions of the browsers but these are the browsers we strive to keep working.
2c810ce7 43
289ff809
DI
44## Demo
45
46To launch the demo simply run:
47
48```
49npm install
50npm start
51```
52
c2fccc03 53Then open http://0.0.0.0:3000 in a web browser (use http://127.0.0.1:3000 if running under Windows).
289ff809 54
dab80b58
DI
55## Addons
56
c9eaae6b 57Addons are JavaScript modules that attach functions to the `Terminal` prototype to extend its functionality. There are a handful available in the main repository in the `dist/addons` directory, you can even write your own (though they may break when the internals of xterm.js change across versions).
dab80b58
DI
58
59To use an addon, just include the JavaScript file after xterm.js and before the `Terminal` object has been instantiated. The function should then be exposed on the `Terminal` object:
60
61```html
c46e799d 62<script src="node_modules/dist/xterm.js"></script>
c9eaae6b 63<script src="node_modules/dist/addons/fit/fit.js"></script>
dab80b58
DI
64```
65
66```js
67var xterm = new Terminal();
68// init code...
9dd64dfb 69xterm.fit();
dab80b58
DI
70```
71
7e905763
PK
72## Releases
73
74Xterm.js follows a monthly release cycle roughly.
75
76The existing releases are available at this GitHub repo's [Releases](https://github.com/sourcelair/xterm.js/releases), while the roadmap is available as [Milestones](https://github.com/sourcelair/xterm.js/milestones).
77
7cd99d15 78## Development and Contribution
8ac7a6eb 79
7e905763
PK
80Xterm.js is maintained by [SourceLair](https://www.sourcelair.com/) and a few external contributors, but we would love to receive contributions from everyone!
81
7cd99d15
PK
82To contribute either code, documentation or issues to xterm.js please read the [Contributing document](CONTRIBUTING.md) before.
83
84The development of xterm.js does not require any special tool. All you need is an editor that supports JavaScript and a browser (if you would like to run the demo you will need Node.js to get all features).
85
86It is recommended though to use a development tool that uses xterm.js internally, to develop for xterm.js. [Eating our own dogfood](https://en.wikipedia.org/wiki/Eating_your_own_dog_food) has been proved extremely beneficial for this project. Known tools that use xterm.js internally are:
87
88#### [SourceLair](https://www.sourcelair.com)
89
90Visit https://lair.io/sourcelair/xterm and follow the instructions. All development will happen in your browser.
8ac7a6eb 91
7cd99d15
PK
92#### [Visual Studio Code](http://code.visualstudio.com/)
93
94[Download Visual Studio Code](http://code.visualstudio.com/Download), clone xterm.js and you are all set.
95
96## License Agreement
97
98If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work.
51946a73 99
dd93e62a 100Copyright (c) 2014-2016, SourceLair, Private Company ([www.sourcelair.com](https://www.sourcelair.com/home)) (MIT License)
d24e0055 101
51946a73 102Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)