Is there a good way to run and manage multiple nodejs apps on a single server?
I\'ve been looking at haibu and nodester, but they seem a little complex for what I am try
These days I've taken to using dokku which is a OSS clone of heroku. Deploying is as simple as making sure your package.json contains a start script. For example:
"scripts": { "start": "node index.js" }
Sample App