npm install -s jquery 安装好jQuery
为什么package.json文件里没显示该依赖啊?
{
"name": "simple-app-demo",
"version": "1.0.0",
"description": "node demo",
"main": "index.js",
"scripts": {
"build": "webpack app.js bundle.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Hanger",
"license": "ISC"
}
你需要在安装的时候加上参数--save或--save-dev。
你可以在你的命令行工具输入npm install --help,就可以知道它怎么用。
更具体的你可以查文档