美文网首页
npm常用命令

npm常用命令

作者: 北漂老莫 | 来源:发表于2016-01-24 22:21 被阅读100次

    1.安装node.js的依赖包

    npm install <name>
    
    将npm更新
    [sudo] npm install npm -g
    

    2.全局安装依赖包

    npm install <name> -g
    

    3.安装依赖包并写入package.json中

    npm install <name> --save
    

    4.创建package.json文件

    npm init
    

    5.移除,更新

    npm remove
    npm update
    

    6.列出当前安装的所有包

    npm ls
    

    7.查看全局包的安装路径

    npm root -g
    

    8.帮助

    npm help
    

    相关文章

      网友评论

          本文标题:npm常用命令

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