It was difficult, but here is how I did it. Not sure if this is the best practice or not.
index.js, server.js, Elastic Beanstalk. server.js forever-monitor
if(process.env.NODE_ENV == 'production') {
var child = new (forever.Monitor)('index.js', {
silent: false,
args: []
});
child.start();
}