package.json 不显示依赖

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"
}
阅读 4.8k
5 个回答

你需要在安装的时候加上参数--save或--save-dev。
你可以在你的命令行工具输入npm install --help,就可以知道它怎么用。

更具体的你可以查文档

npm install jquery --save

npm i -S jquery

S 需要大写的

npm install -S jquery S是要大写的,或者写成 npm install --save jquery 这里是小写

npmm install xxx --save(-dev)

推荐问题
宣传栏