我通过一些教程学习nodejs,到目前为止它很顺利。现在我收到了一个错误,我被卡住了。任何人都可以帮助我。
这是我的app.js文件
var greet5 = require('/greet5');
greet5.greet();
这是我的greet5.js文件,该文件与app.js
位于同一目录中var greeting = "Hello from Revieling Module pattern";
function greet(){
console.log(greeting);
}
module.exports = {
greet : greet
}
当我在终端上运行节点app.js时,这是我面临的错误。
module.js:328
throw err;
^
Error: Cannot find module '/greet5'
at Function.Module._resolveFilename (module.js:326:15)
at Function.Module._load (module.js:277:25)
at Module.require (module.js:354:17)
at require (internal/module.js:12:17)
at Object.<anonymous> (/home/pankaja/Nodejs/Tests/23-Module Patterns/app.js:19:14)
at Module._compile (module.js:410:26)
at Object.Module._extensions..js (module.js:417:10)
at Module.load (module.js:344:32)
at Function.Module._load (module.js:301:12)
at Function.Module.runMain (module.js:442:10)
任何人都可以帮助我。感谢
答案 0 :(得分:0)
运行nodejs install
后出现的nodejs项目的README.md文件,解释了如何通过nodejs运行Web应用程序。
它表示你必须在命令行上执行npm run dev
。
这是您默认的README.md:
# Front End Boilerplate
Front-end boilerplate for creating new web projects with Gulp.js and everything you need to get started.
# Getting Started
Required! Gulp installed `npm install -g gulp`
```
$ cd html-boilerplate
$ npm install
$ npm run dev
```
# Build to production
```
$ npm run build
```
Thank you for your suggestions!