Passing v8 options to forever with nodejs

forever, node.js

Solution

forever start -c "node --harmony" app.js

Problem

So I use forever with nodejs to keep my servers up. I need to pass in some v8 options. I can do this via nodejs command line, but how I can do this with forever?

Original source