]> git.proxmox.com Git - mirror_xterm.js.git/blobdiff - README.md
Add AUTHORS and AUTHORS generator script
[mirror_xterm.js.git] / README.md
index e8fc5fcd62240b0b7da619b0bacb0d2414386ea0..7c5ff60af06f4c27dfb9f536daa06f496f2ea5b5 100644 (file)
--- a/README.md
+++ b/README.md
@@ -12,11 +12,16 @@ Xterm.js supplies a modular, event-based interface that lets developers build ad
 
 ## Browser Support
 
-- Chrome       48+
-- Firefox      44+
-- Safari       8+
-- Internet Explorer    11+
-- Opera        35+
+Since 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: 
+
+- Chrome 48+
+- Edge 13+
+- Firefox 44+
+- Internet Explorer 11+
+- Opera 35+
+- Safari 8+
+
+xterm.js may work on earlier versions of the browsers but these are the browsers we strive to keep working.
 
 ## Demo
 
@@ -37,20 +42,34 @@ To use an addon, just include the JavaScript file after xterm.js and before the
 
 ```html
 <script src="node_modules/src/xterm.js"></script>
-<script src="node_modules/addons/linkify/linkify.js"></script>
+<script src="node_modules/addons/fit/fit.js"></script>
 ```
 
 ```js
 var xterm = new Terminal();
 // init code...
-xterm.linkify();
+xterm.fit();
 ```
 
-## Contribution and License Agreement
+## Development and Contribution
 
-If 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.
+To contribute either code, documentation or issues to xterm.js please read the [Contributing document](CONTRIBUTING.md) before.
+
+The 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).
+
+It 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:
+
+#### [SourceLair](https://www.sourcelair.com)
 
-## License
+Visit https://lair.io/sourcelair/xterm and follow the instructions. All development will happen in your browser.
+
+#### [Visual Studio Code](http://code.visualstudio.com/)
+
+[Download Visual Studio Code](http://code.visualstudio.com/Download), clone xterm.js and you are all set.
+
+## License Agreement
+
+If 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.
 
 Copyright (c) 2014-2016, SourceLair, Private Company ([www.sourcelair.com](https://www.sourcelair.com/home)) (MIT License)