We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
var proxy = require('redbird')({ port: 80 });
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} })
The text was updated successfully, but these errors were encountered:
You are right and I apologise, I was a bit lazy after releasing version 1.0.0 and did not review the old examples. I will fix them asap.
Sorry, something went wrong.
No branches or pull requests
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} })
The text was updated successfully, but these errors were encountered: