Merge remote-tracking branch 'ups/v3' into 847_proper_scrollback_value

This commit is contained in:
Daniel Imms
2017-08-08 19:05:24 -07:00
180 changed files with 1297 additions and 1248 deletions
+15 -1
View File
@@ -63,7 +63,9 @@ Xterm.js works seamlessly in Electron apps and may even work on earlier versions
### Linux or macOS
Run the following commands:
First, be sure that a C++ compiler such as GCC-C++ or Clang is installed
Then run the following commands:
```
$ npm install
@@ -124,6 +126,18 @@ var xterm = new Terminal();
xterm.fit();
```
## CommonJS
Importing xterm.js in a CommonJS environment (eg. [Electron](https://electron.atom.io/)) can be done like so:
```ts
// JavaScript
var Terminal = require('xterm').Terminal;
// TypeScript
import { Terminal } from 'xterm';
```
## Releases
Xterm.js follows a monthly release cycle roughly.

Some files were not shown because too many files have changed in this diff Show More