美文网首页
npm 使用技巧

npm 使用技巧

作者: 奔跑在春风里 | 来源:发表于2017-01-11 10:07 被阅读0次

    国内可以使用淘宝镜像的 cnpm

    npm 设置淘宝镜像
    npm config set registry https://registry.npm.taobao.org --global
    npm config set disturl https://npm.taobao.org/dist --global
    
    // 查看下载源
    yarn config get registry
    yarn config set registry https://registry.npm.taobao.org
    
    //设置配置文件
    npm config edit
    
    npm install npm@latest -g//更新npm
    
    //更新node 下面2个命令
    npm install -g n 
    n latest
    
    

    mac系统使用-g全局安装的时候,需要在前面加 sudo npm xxxx
    下面示例以安装 react 模块为示例

    安装

    npm install react 在项目中安装 react 模块
    npm install react --save 安装完把配置写在 package.json的dependencies 中
    npm install react --save-dev 安装完把配置写在 package.json的devDependencies 中
    npm install react@15.0.0 --save 安装指定版本的模块
    npm install react -g 全局安装 react 模块
    npm update react 更新 react 模块到最新的版本
    npm install npm@latest -g 安装某个版本的npm

    卸载

    ** npm uninstall react** 卸载 ract 模块

    查看

    ** npm ls** 查看所有安装的模块信息
    ** npm view react versions** 查看 react 模块所有的历史版本号
    npm info react 查看安装好的 react 模块的信息
    npm info react version 查看安装好的 react 模块的版本号
    ** npm view react versions** 查看 react 模块所有可以安装的版本号

    相关文章

      网友评论

          本文标题:npm 使用技巧

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