It seems that something has changed so this is not working now:
var proxy = require('redbird')({ port: 80 });
This throws an error: is not a function
Trying for some time I was able to make it work again with this:
var redbird = require('redbird') var proxy = new redbird.Redbird({port: 80} })