- Removed bin bash scripts in favor of npm scripts so they work
cross-platform
- Moved to use 127.0.0.1 as 0.0.0.0 doesn't work on Windows
Note that this doesn't work with the current pty.js as it doesn't build on
Windows.
npm start
```
-Then open http://0.0.0.0:3000 in a web browser.
+Then open http://127.0.0.1:3000 in a web browser.
## Addons
+++ /dev/null
-#! /usr/bin/env sh
-
-# Development server for xterm.js
-node demo/app.js
+++ /dev/null
-#! /bin/bash
-#
-# Testing script for xterm.js
-
-node_modules/.bin/mocha $@
/**
* Open bash terminal and attach it
*/
- var term = pty.spawn('bash', [], {
+ var term = pty.spawn(process.platform === 'win32' ? 'cmd.exe' : 'bash', [], {
name: 'xterm-color',
cols: 80,
rows: 24,
});
var port = process.env.PORT || 3000,
- host = '0.0.0.0';
+ host = '127.0.0.1';
console.log('App listening to http://' + host + ':' + port);
app.listen(port, host);
"chai": "3.5.0"
},
"scripts": {
- "start": "bash bin/server",
- "test": "bash bin/test --recursive"
+ "start": "node demo/app.js",
+ "test": "node_modules/.bin/mocha --recursive"
}
}