Express has no method configure error
问题 I'm trying to get started with the MEAN stack. And I'm following this tutorial: link I have made it until the Test Our Server section. Here // modules ================================================= var express = require('express'); var app = express(); var mongoose= require('mongoose'); // configuration =========================================== // config files var db = require('./config/db'); var port = process.env.PORT || 8080; // set our port mongoose.connect(db.url); // connect to our