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