Вот мой файл index.js:
const express = require('express')
const app = express()
app.set('views', __dirname + '/views');
app.set('view engine', 'pug')
app.get('/', function (req, res) {
res.render('index', { title: 'Hey', message: 'Hello there!' })
})
app.listen(3333, function () {
console.log('Example app listening on port 3333!')
})
файл index.pug:
html
head
title= title
body
h1= Hello
package.json файл:
{
"name": "@npm-private/pug_with_node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.15.3",
"jade": "^1.11.0",
"pug": "^2.0.0-rc.2"
}
}
Когда я запускаю файл своего сервера, он показывает мне ошибку. на самом деле, я устанавливаю мопс и нефрит как модули npm:
Ошибка: не удается найти модуль 'pug' в Function.Module._resolveFilename (module.js: 485: 15) в Function.Module._load (module.js: 437: 25) в Module.require(module.js: 513: 17) по требованию (internal/module.js: 11:18) в новом представлении (/home/software/ node_modules/express/lib/view.js:80:30) на Function.render(/home/software/node_modules/express/lib/application.js:570:12) на сервере ServerResponse.render(/home/software/node_modules/express/lib/response.js:971:7) at/home/software/Harsh Patel/pug_with_node/index.js: 8: 7 в Layer.handle [as handle_request] (/home/software/node_modules/express/lib/router/layer.js:95:5) на следующем (/home/software/node_modules/express/lib/router/route.js:137:13)