├── .gitignore ├── .versions ├── LICENSE ├── README.md ├── package.js └── server ├── main.js ├── shell_client.js └── shell_server.js /.gitignore: -------------------------------------------------------------------------------- 1 | .npm -------------------------------------------------------------------------------- /.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qualialabs/prod-shell/HEAD/.versions -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qualialabs/prod-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qualialabs/prod-shell/HEAD/README.md -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qualialabs/prod-shell/HEAD/package.js -------------------------------------------------------------------------------- /server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qualialabs/prod-shell/HEAD/server/main.js -------------------------------------------------------------------------------- /server/shell_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qualialabs/prod-shell/HEAD/server/shell_client.js -------------------------------------------------------------------------------- /server/shell_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qualialabs/prod-shell/HEAD/server/shell_server.js --------------------------------------------------------------------------------