├── .gitignore ├── README.md ├── app.js ├── config.json ├── demo.gif ├── index.html ├── package.json └── webterm.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | *.swp 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gottox/node-webterm/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gottox/node-webterm/HEAD/app.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gottox/node-webterm/HEAD/config.json -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gottox/node-webterm/HEAD/demo.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gottox/node-webterm/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gottox/node-webterm/HEAD/package.json -------------------------------------------------------------------------------- /webterm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gottox/node-webterm/HEAD/webterm.js --------------------------------------------------------------------------------