source: EcnlProtoTool/trunk/webapp/webmrbc/xterm/README.md@ 270

Last change on this file since 270 was 270, checked in by coas-nagasima, 7 years ago

mruby版ECNLプロトタイピング・ツールを追加

File size: 3.0 KB
Line 
1# xterm.js
2
3![xterm.js build status](https://api.travis-ci.org/sourcelair/xterm.js.svg)
4
5Xterm.js is a full xterm clone, written in JavaScript.
6
7It is used at [SourceLair](https://www.sourcelair.com/home) to help people develop their applications in their browsers.
8
9Xterm.js supplies a modular, event-based interface that lets developers build addons and themes on top of it.
10
11![xterm.js screenshot](xtermjs.png)
12
13## Browser Support
14
15Since 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:
16
17- Chrome 48+
18- Edge 13+
19- Firefox 44+
20- Internet Explorer 11+
21- Opera 35+
22- Safari 8+
23
24xterm.js may work on earlier versions of the browsers but these are the browsers we strive to keep working.
25
26## Demo
27
28To launch the demo simply run:
29
30```
31npm install
32npm start
33```
34
35Then open http://0.0.0.0:3000 in a web browser (use http://127.0.0.1:3000 is running under Windows).
36
37## Addons
38
39Addons 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 `addons` directory, you can even write your own (though they may break when the internals of xterm.js change across versions).
40
41To 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:
42
43```html
44<script src="node_modules/src/xterm.js"></script>
45<script src="node_modules/addons/fit/fit.js"></script>
46```
47
48```js
49var xterm = new Terminal();
50// init code...
51xterm.fit();
52```
53
54## Development and Contribution
55
56To contribute either code, documentation or issues to xterm.js please read the [Contributing document](CONTRIBUTING.md) before.
57
58The 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).
59
60It 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:
61
62#### [SourceLair](https://www.sourcelair.com)
63
64Visit https://lair.io/sourcelair/xterm and follow the instructions. All development will happen in your browser.
65
66#### [Visual Studio Code](http://code.visualstudio.com/)
67
68[Download Visual Studio Code](http://code.visualstudio.com/Download), clone xterm.js and you are all set.
69
70## License Agreement
71
72If 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.
73
74Copyright (c) 2014-2016, SourceLair, Private Company ([www.sourcelair.com](https://www.sourcelair.com/home)) (MIT License)
75
76Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
Note: See TracBrowser for help on using the repository browser.