├── .bithoundrc ├── .gitignore ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── circle.yml ├── docs ├── coverage │ ├── base.css │ ├── index.html │ ├── lib │ │ ├── index.html │ │ ├── json-sieve.js.html │ │ ├── respawn.js.html │ │ ├── superchild.js.html │ │ └── unlogger.js.html │ ├── prettify.css │ ├── prettify.js │ ├── sort-arrow-sprite.png │ └── sorter.js ├── docco.css ├── json-sieve.html ├── public │ ├── fonts │ │ ├── aller-bold.eot │ │ ├── aller-bold.ttf │ │ ├── aller-bold.woff │ │ ├── aller-light.eot │ │ ├── aller-light.ttf │ │ ├── aller-light.woff │ │ ├── fleurons.eot │ │ ├── fleurons.ttf │ │ ├── fleurons.woff │ │ ├── roboto-black.eot │ │ ├── roboto-black.ttf │ │ └── roboto-black.woff │ ├── images │ │ └── gray.png │ └── stylesheets │ │ └── normalize.css ├── superchild.html └── unlogger.html ├── lib ├── json-sieve.js ├── respawn.js ├── superchild.js └── unlogger.js ├── package.json └── test ├── programs ├── delayed-abort.js ├── echo.js ├── example-1.js ├── infinite-loop-child.js ├── infinite-loop-root.js └── stream-test.js ├── pstatus.js └── superchild.mocha.js /.bithoundrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/.bithoundrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Mikey (Github/@ahdinosaur) 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/circle.yml -------------------------------------------------------------------------------- /docs/coverage/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/coverage/base.css -------------------------------------------------------------------------------- /docs/coverage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/coverage/index.html -------------------------------------------------------------------------------- /docs/coverage/lib/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/coverage/lib/index.html -------------------------------------------------------------------------------- /docs/coverage/lib/json-sieve.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/coverage/lib/json-sieve.js.html -------------------------------------------------------------------------------- /docs/coverage/lib/respawn.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/coverage/lib/respawn.js.html -------------------------------------------------------------------------------- /docs/coverage/lib/superchild.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/coverage/lib/superchild.js.html -------------------------------------------------------------------------------- /docs/coverage/lib/unlogger.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/coverage/lib/unlogger.js.html -------------------------------------------------------------------------------- /docs/coverage/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/coverage/prettify.css -------------------------------------------------------------------------------- /docs/coverage/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/coverage/prettify.js -------------------------------------------------------------------------------- /docs/coverage/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/coverage/sort-arrow-sprite.png -------------------------------------------------------------------------------- /docs/coverage/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/coverage/sorter.js -------------------------------------------------------------------------------- /docs/docco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/docco.css -------------------------------------------------------------------------------- /docs/json-sieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/json-sieve.html -------------------------------------------------------------------------------- /docs/public/fonts/aller-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/fonts/aller-bold.eot -------------------------------------------------------------------------------- /docs/public/fonts/aller-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/fonts/aller-bold.ttf -------------------------------------------------------------------------------- /docs/public/fonts/aller-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/fonts/aller-bold.woff -------------------------------------------------------------------------------- /docs/public/fonts/aller-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/fonts/aller-light.eot -------------------------------------------------------------------------------- /docs/public/fonts/aller-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/fonts/aller-light.ttf -------------------------------------------------------------------------------- /docs/public/fonts/aller-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/fonts/aller-light.woff -------------------------------------------------------------------------------- /docs/public/fonts/fleurons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/fonts/fleurons.eot -------------------------------------------------------------------------------- /docs/public/fonts/fleurons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/fonts/fleurons.ttf -------------------------------------------------------------------------------- /docs/public/fonts/fleurons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/fonts/fleurons.woff -------------------------------------------------------------------------------- /docs/public/fonts/roboto-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/fonts/roboto-black.eot -------------------------------------------------------------------------------- /docs/public/fonts/roboto-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/fonts/roboto-black.ttf -------------------------------------------------------------------------------- /docs/public/fonts/roboto-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/fonts/roboto-black.woff -------------------------------------------------------------------------------- /docs/public/images/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/images/gray.png -------------------------------------------------------------------------------- /docs/public/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/public/stylesheets/normalize.css -------------------------------------------------------------------------------- /docs/superchild.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/superchild.html -------------------------------------------------------------------------------- /docs/unlogger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/docs/unlogger.html -------------------------------------------------------------------------------- /lib/json-sieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/lib/json-sieve.js -------------------------------------------------------------------------------- /lib/respawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/lib/respawn.js -------------------------------------------------------------------------------- /lib/superchild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/lib/superchild.js -------------------------------------------------------------------------------- /lib/unlogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/lib/unlogger.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/package.json -------------------------------------------------------------------------------- /test/programs/delayed-abort.js: -------------------------------------------------------------------------------- 1 | setTimeout(function() { 2 | process.exit(99); 3 | }, 0); 4 | 5 | -------------------------------------------------------------------------------- /test/programs/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/test/programs/echo.js -------------------------------------------------------------------------------- /test/programs/example-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/test/programs/example-1.js -------------------------------------------------------------------------------- /test/programs/infinite-loop-child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/test/programs/infinite-loop-child.js -------------------------------------------------------------------------------- /test/programs/infinite-loop-root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/test/programs/infinite-loop-root.js -------------------------------------------------------------------------------- /test/programs/stream-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/test/programs/stream-test.js -------------------------------------------------------------------------------- /test/pstatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/test/pstatus.js -------------------------------------------------------------------------------- /test/superchild.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayanklahiri/node-superchild/HEAD/test/superchild.mocha.js --------------------------------------------------------------------------------