美文网首页
npm常用命令

npm常用命令

作者: AFew | 来源:发表于2019-03-19 22:10 被阅读0次
  • npm--version
    • 查看版本
  • 升级npm(自己升级自己):
    • npm install --global npm
  • npm init
    • npm init -y 可以跳过向导,快速生成
  • npm install
    • 一次性把dependencies选项中的依赖项全部安装
    • npm i
  • npm install 包名
    • 只下载
    • npm i 包名
  • npm install -save 包名
    • 下载并且保存依赖项(package.json文件中的dependencies选项)
    • npmi -S 包名
  • npm uninstall 包名
    • 只删除,如果有依赖项会依然保存
    • npm un 包名
  • npm uninstall --save 包名
    • 删除的同时也会把依赖信息也去除
    • npm un -S 包名
  • npm help
    • 查看使用帮助
  • npm 命令 --help
    • 查看指定命令的使用帮助
    • 例如我忘记了uninstall命令的简写了,这个时候,可以输入npm uninstall --help来查看使用帮助

相关文章

  • npm 常用命令缩写

    npm 常用命令缩写,不断更新 npm i === npm install npm i webpack -D ==...

  • ionic常用命令

    常用命令: npm install -g cnpm --registry=https://registry.npm...

  • [mark] npm 了解一下~

    npm 常用命令及解析

  • npm常用命令

    npm常用命令 npm init 生成package.json文件 npm install 安装package.j...

  • Yarn 常用命令

    Yarn 常用命令 ``` npm install === yarn —— install安装是默认行为 npm ...

  • nodejs npm 常用命令

    国内镜像 设置代理 npm设置列表 npm config 所有的api npm 常用命令npm查看全局安装过的包 ...

  • Angular 学习笔记

    几个常用命令 npm + ng npm i --save 包名:软件依赖 npm i --save-dev 包名...

  • NPM

    npm 常用命令 1.react-native --version ...

  • npm命令

    1.查看npm 版本 2.npm淘宝镜像 3.npm常用命令说明 4.npm卸载 5.npm更新 6.npm清除缓...

  • NPM一些常用命令

    欢迎移步我的博客阅读:《NPM一些常用命令》 关于NPM NPM的全称是Node Package Manager,...

网友评论

      本文标题:npm常用命令

      本文链接:https://www.haomeiwen.com/subject/wsuomqtx.html