damien
v1.1.0
Published
Daemonize Node application with child processes
Downloads
2
Readme
Damien
Running Node applications as a deamon by means of child processes
Why?
- :closed_lock_with_key: secure and almost dependency free;
- :hatching_chick: tiny and understandable codebase;
- :kiss: keep it simple, stupid;
Installation
Global installation
npm install -g damien
Local installation
npm install --save-dev damien
Usage
Global usage
damien ./index.js
Local usage
npx damien ./index.js
As NPM script
{
"name": "my-app",
"main": "lib/server.js",
"scripts": {
"start": "damien ./lib/server.js"
},
"devDependencies": {
"damien": "*"
}
}