errorController.js 258 Bytes
const httpStatus = require('http-status-codes');
 
exports.pageNotFoundError = (req, res) => {
    let errorCode = httpStatus.NOT_FOUND;
    res.status(errorCode);
    res.send(`<h1>${errorCode}</h1> \n 찾는 페이지가 존재하지 않습니다. `);
}