# 1. 安装 node.js

node.js 自带了 npm


# 2.更新最新版本

  • npm@latest 最新
  • -g 全局环境

done


# 3. 使用

到项目【工作】目录

初始化

  • -y 一路 yes

然后多了个 json 文件

安装jquery

npm i jquery

  • i 下载

后续 更换环境
只需要 npm i 之前的依赖就都回来了~

删除

npm uninstall jquery

老版本 npm 需要 --save 如:npm uninstall jquery --save

更新
npm update jquery

指定版本
npm i jquery@3.0.0


# 4. 配置

scripts

.json 里面的 scripts 为可执行命令

如:npm run test

指定开发时依赖
添加: --save-dev

例如:
npm i webpack --save-dev