exp.use(function (req,res, next) {
console.log(i++)
next();
})
exp.use(function (req,res, next) {
console.log(i++)
next();
})
exp.use(function (req,res, next) {
console.log(i++)
next();
})
exp.get('/',function (req,res) {
res.send("<h2>Главная страница</h2>")
})
почему у меня выходит куча ошибок и ничего не работает ?