1.0.4 • Published 8 years ago

wires-forever v1.0.4

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

wires-forever

A simple script to launch apps in the background

I got fed up with manual work, and created a simple and automated script that calls "forever" with daemon mode.

var Forever = require('wires-forever');

Forever.daemon(__dirname + '/app.js', {
   autostart: __filename, // will automatically generate auto start script (check logs)
   name: 'my-test',
   port : 3000, // recommended
   noveVersion : "0.12.0" // optional - "n" must be installed
   logs: __dirname + "/.logs/",
   env: {
      NODE_ENV: "production"
   }
});

You launch this script and you can be sure that your application is running.

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago