当前位置:网站首页>npm install -g/--save/--save-dev的区别
npm install -g/--save/--save-dev的区别
2022-07-05 06:41:00 【海底烧烤店ai】
npm install XX (简写为npm i XX)
- 会把
XX
包安装到node_modules
目录中 - 在
npm5
版本之前,XX
不会自动写入package.json
- 在
npm5
之后会自动写入package.json
的dependencies
属性中(与--save
相同)
npm install XX -g
-g
的意思是将模块安装到全局,具体安装到磁盘哪个位置,要看npm config prefix
的位置具体查看方法是在终端输入
npm config edit
,在弹出的文档中找到;prefix=C:\node
就是了
npm install XX --save(简写为npm i XX -S)
会把
XX
包安装到node_modules
目录中,会在
package.json
的dependencies
属性下添加XX
-运行
npm install --production
或者注明NODE_ENV
变量值为production
时(生产环境下安装依赖),会自动下载模块到node_modules
目录中。在
npm5
之后可以被npm i xx
替代
dependencies
中的依赖是生产环境中的依赖,在项目部署后的生产环境中也会被安装,例如:
用了
axios
请求,由于发布到生产后还是要用到axios
,这就可以将axios
安装到dependencies
npm install XX --save-dev(简写为npm i XX -D)
会把
XX
包安装到node_modules
目录中会在
package.json
的devDependencies
属性下添加XX
运行
npm install --production
或者注明NODE_ENV
变量值为production
时(生产环境下安装依赖),不会自动下载模块到node_modules
目录中。
devDependencies
中的依赖是仅在开发环境中的依赖,在项目部署后的生产环境中不会被安装,例如:
写
ES6
代码时,需要babel
转换成es5
,转换完成后,我们只需要转换后的代码,上线的时候,直接把转换后的代码部署到生产环境,不需要bebal
了,生产环境不需要,这就可以将babel
安装到devDependencies
边栏推荐
- Spinningup drawing curve
- Technology blog learning website
- The problem of Chinese garbled code in the vscode output box can be solved once for life
- 2. Addition and management of Oracle data files
- Ros2 - ros2 vs. ros1 (II)
- Build a microservice cluster environment locally and learn to deploy automatically
- 摄像头的MIPI接口、DVP接口和CSI接口
- 程序中的负数存储及类型转换
- 【软件测试】04 -- 软件测试与软件开发
- Configuration method and configuration file of SolidWorks GB profile library
猜你喜欢
随机推荐
【MySQL8.0不支持表名大写-对应方案】
全局变量和静态变量的初始化
解读最早的草图-图像翻译工作SketchyGAN
PHY驱动调试之 --- PHY控制器驱动(二)
*P++, (*p) + +, * (p++) differences
What is linting
SD_CMD_SEND_SHIFT_REGISTER
Application of recyclerview
【软件测试】03 -- 软件测试概述
Vant Weapp SwipeCell设置多个按钮
Vscode creates its own code template
6-3 find the table length of the linked table
ROS2——node节点(七)
The differences and connections among cookies, sessions, JWT, and tokens
Configuration method and configuration file of SolidWorks GB profile library
[nvidia] CUDA_ VISIBLE_ DEVICES
How to answer when you encounter a jet on CSDN?
new和malloc的区别
VLAN experiment
.net core踩坑实践