├── .gitignore ├── .travis.yml ├── README.md ├── command.js ├── diagram.png ├── package.json ├── processProxy.js ├── statefulProcessCommandProxy.js └── test └── all.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsofinfo/stateful-process-command-proxy/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsofinfo/stateful-process-command-proxy/HEAD/README.md -------------------------------------------------------------------------------- /command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsofinfo/stateful-process-command-proxy/HEAD/command.js -------------------------------------------------------------------------------- /diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsofinfo/stateful-process-command-proxy/HEAD/diagram.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsofinfo/stateful-process-command-proxy/HEAD/package.json -------------------------------------------------------------------------------- /processProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsofinfo/stateful-process-command-proxy/HEAD/processProxy.js -------------------------------------------------------------------------------- /statefulProcessCommandProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsofinfo/stateful-process-command-proxy/HEAD/statefulProcessCommandProxy.js -------------------------------------------------------------------------------- /test/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsofinfo/stateful-process-command-proxy/HEAD/test/all.js --------------------------------------------------------------------------------