Blogger Information
Blog 40
fans 0
comment 0
visits 16251
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
实例演示npm常用指令
飞天001
Original
329 people have browsed it

本地与全局的常用指令(本地是自己一个项目用,全局是所有项目都可以使用)

  1. 生成管理第三方包的配置文件package.json
  2. npm init -y
  3. /*实际上在安装包后会自动创建这个文件*/
  1. 查看本地默认包目录(当前项目依赖的包,仅限在当前项目中使用)
  2. npm root
  3. 查看全局包目录
  4. npm root -g
  1. 安装本地包
  2. npm install package-name(包名称)
  3. 简化命令
  4. npm i package-name
  5. 安装全局包
  6. npm install package-name -g
  1. 删除包(如果删除全局的包,在最后加上 -g: --global的简写)
  2. npm uninstall package-name
  3. 简化命令
  4. npm uni package-name
  1. 查看本地已经安装了哪些包
  2. npm list
  3. 查看本地已经安装了哪些包
  4. npm list -g
  1. 查看是否有可以更新的包
  2. npm outdated
  1. 安装到当前项目中,并且是生产依赖
  2. npm i package-name -S
  3. 安装到当前项目中,并且是开发依赖(要安装到全局,需要在最后加 -g)
  4. npm i package-name -D
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post