-
Notifications
You must be signed in to change notification settings - Fork 4k
Open
Description
In the project of task-manager , this is the source-code in middleware/async.js
const asyncWrapper = (fn) => {
return async (req, res, next) => {
try {
await fn(req, res, next)
} catch (error) {
next(error) // Line ABC
}
}
}
module.exports = asyncWrapper
And this is the code in app.js
const express = require('express');
const app = express();
const tasks = require('./routes/tasks');
const connectDB = require('./db/connect');
require('dotenv').config();
const notFound = require('./middleware/not-found');
const errorHandlerMiddleware = require('./middleware/error-handler');
// middleware
app.use(express.static('./public'));
app.use(express.json());
// routes
app.use('/api/v1/tasks', tasks);
app.use(notFound);
app.use(errorHandlerMiddleware);
const port = process.env.PORT || 5000;
const start = async () => {
try {
await connectDB(process.env.MONGO_URI);
app.listen(port, () =>
console.log(`Server is listening on port ${port}...`)
);
} catch (error) {
console.log(error);
}
};
start();
Now the line ABC deom async.js shall execute app.use(notFound)
, but instead it executes app.use(errorHandlerMiddleWare)
. Why is it so ?
Metadata
Metadata
Assignees
Labels
No labels