You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 21, 2020. It is now read-only.
Getting this error:
app.configure(function() {
^
TypeError: Object function (req, res, next) {
app.handle(req, res, next);
} has no method 'configure'
This is because Express version 4 does not support "configure" function: http://stackoverflow.com/questions/22202232/express-has-no-method-configure-error
However package.json has hard-coded express dependency:
"express": "*"
which is causing express version 4 to download. Express version 3 works fine!
The text was updated successfully, but these errors were encountered: