我目前正在学习Node.JS,并希望通过Grunt提高我的开发速度。我已经在全球范围内安装了“grunt-cli”,并通过NPM在本地安装了“grunt-nodemon”作为开发资源。目标是每当JavaScript文件发生更改时,Node.JS都会重新启动。
以下是我在控制台中获得的内容:
D:\Projects\NodeJS\Web\Board\>grunt
Loading "gruntfile.js" tasks...ERROR
>> ReferenceError: mode is not defined
Warning: Task "default" not found. Use --force to continue.
Aborted due to warnings.
这是我的gruntfile.js:
//gruntfile.js
mode.exports = function (grunt) {
grunt.initConfig({
nodemon: {
all: {
script: 'server.js',
options: {
watchedExtensions: ['js']
}
}
},
});
grunt.loadNpmTasks('grunt-nodemon');
grunt.registerTask('default', ['nodemon']);
};
控制台指向与gruntfile.js相同的目录。
如果您有任何想法,请告诉我。谢谢!
答案 0 :(得分:3)
代码的第1行是
mode.exports
应该是
module.exports // change mode to module. Its a typo in your code
因此错误
ReferenceError: mode is not defined
检查拼写错误。快乐的编码。