我正在学习Sails的过程中,出于某种原因,当我使用&#34创建一个新的风帆应用程序时,我们正在使用新的foobar"新应用程序将129个节点模块安装到foobar / node_modules目录中。
在我之前使用node的工作经验中,node_modules文件夹通常不会被填充,直到" npm install"在更新package.json之后运行,或者是否专门安装了模块。
根据预期,查看其他教程时,无法在创建新应用程序时创建node_modules文件夹。我的npm安装会出现问题吗?
我的package.json依赖项部分如下所示:
"dependencies": {
"ejs": "~0.8.4",
"grunt": "0.4.2",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.10.1",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-cssmin": "~0.9.0",
"grunt-contrib-jst": "~0.6.0",
"grunt-contrib-less": "0.11.1",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-sails-linker": "~0.9.5",
"grunt-sync": "~0.0.4",
"include-all": "~0.1.3",
"rc": "~0.5.0",
"sails": "~0.11.3",
"sails-disk": "~0.10.0"
}
提前感谢您的帮助!