Skip to content

NPM

INFO

GitHub 在 2020 年 11 月宣布了对 npm 的收购。收购时,选择公布或不公布收购金额通常取决于各种因素,包括商业敏感性、市场竞争、合同条款和双方的协议。

npm 是随同 Node.js 安装的默认包管理器。当你安装 Node.js 时,npm 也会随之安装。

热门推荐使用 pnpm

  1. 查看 npm 信息:

    bash
    npm -v
    npm help
  2. 初始化一个新的项目:

    bash
    npm init
  3. 安装包:

    bash
    npm install <package> --save-dev
  4. 卸载包:

    bash
    npm uninstall <package>
  5. 清除缓存:

    bash
    npm cache clean
  6. 运行脚本:

    bash
    npm run <script>
  7. 安装全局包:

    bash
    npm install -g <package>
  8. 卸载全局包:

    bash
    npm uninstall -g <package>
  9. 列举全局包:

    bash
    npm list -g --depth=0
  10. 查看包信息:

    bash
    npm show <package>
  11. 查看包版本:

    bash
    npm show <package> version

参考链接

官网:https://www.npmjs.com/