├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app.js ├── lib └── death.js ├── package.json └── test ├── death.test.js ├── mocha.opts └── resources ├── default ├── disable ├── sighup ├── uncaughtException-false └── uncaughtException-true /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/node-death/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/node-death/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/node-death/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/node-death/HEAD/app.js -------------------------------------------------------------------------------- /lib/death.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/node-death/HEAD/lib/death.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/node-death/HEAD/package.json -------------------------------------------------------------------------------- /test/death.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/node-death/HEAD/test/death.test.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --ui bdd 3 | --timeout 2000 -------------------------------------------------------------------------------- /test/resources/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/node-death/HEAD/test/resources/default -------------------------------------------------------------------------------- /test/resources/disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/node-death/HEAD/test/resources/disable -------------------------------------------------------------------------------- /test/resources/sighup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/node-death/HEAD/test/resources/sighup -------------------------------------------------------------------------------- /test/resources/uncaughtException-false: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/node-death/HEAD/test/resources/uncaughtException-false -------------------------------------------------------------------------------- /test/resources/uncaughtException-true: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/node-death/HEAD/test/resources/uncaughtException-true --------------------------------------------------------------------------------