Merge pull request #94 from Tyriar/patch-2

Add section on addons to README
This commit is contained in:
Paris Kasidiaris
2016-06-08 21:30:34 +03:00
+17
View File
@@ -19,6 +19,23 @@ npm start
Then open http://0.0.0.0:3000 in a web browser.
## Addons
Addons 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).
To 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:
```html
<script src="node_modules/src/xterm.js"></script>
<script src="node_modules/addons/linkify/linkify.js"></script>
```
```js
var xterm = new Terminal();
// init code...
xterm.linkify();
```
## Contribution and 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.