美文网首页
npm 与 git 使用技巧

npm 与 git 使用技巧

作者: coolheadedY | 来源:发表于2017-03-28 09:35 被阅读346次

npm

为了让你更了解 npm,我们要做两件事(可不做)
运行 npm config set loglevel http,让你知道 npm 发的每一个请求
运行 npm config set progress false,关闭那个进度条
为了让你的安装速度变快,运行 npm config set registry https://registry.npm.taobao.org/
这会让你在运行 npm adduser 的时候出问题,想要恢复成原样,只需要 npm config delete registry 即可

nrm:
$ nrm ls
$ nrm use xxx

npm install -g nrm --registry=https://registry.npm.taobao.org

npm i --verbose

显示安装信息

npm run

使用npm run script 提升作用变量
start test可不用run

git

解决冲突:
$ git stash
$ git pull
$ git stash pop

git pull = git fetch + git merge

git fetch origin master
git merge FETCH_HEAD
手动commit提交更改

yarn

yarn config set registry 'https://registry.npm.taobao.org'

yarn与npm对照表

yarn / yarn install -> npm install
yarn add -> npm install --save
yarn remove -> npm uninstall --save
yarn add --dev -> npm install --save-dev
yarn upgrade -> npm update --save
yarn global add -> npm install -g

git submodule 子模块用法

$ git submodule add git@github.com:slashhuang/pure-node-notebook-fe.git   public
$ git submodule init public
$ git submodule update // 进行clone
// 出现问题
$ rm -rf public  ==> 删除原先的依赖
$ git add . 
$ git commit -am 'remove public'
$ git push 
$ git submodule update public // 然后随心
如果已经有submodule那就调用
$ git submodule XXX  update
可以直接 git clone xxx public 
cd public
npm i
npm start

相关文章

  • npm 与 git 使用技巧

    npm 为了让你更了解 npm,我们要做两件事(可不做)运行 npm config set loglevel ht...

  • nodesjs+mongodb环境配置

    git环境配置 npm使用淘宝镜像 npm install -g cnpm --registry=https://...

  • React Native RSA加密

    Jsencrypt框架 NPM Jsencrypt 1). npm安装 2). 导入 3). 使用Git控制台创建...

  • RN学习-网络请求

    使用request 安装:npm install request --savegithub:https://git...

  • git的使用

    git的使用 安装brower npm install -g bower...

  • nvm命令安装

    nvm, nodejs和npm 的安装使用 首先安装nvm命令 $ cd ~/git $ git clone...

  • NPM使用技巧

    如果你是一个JavaScript系的开发者,一定不会陌生NPM,它既是一个平台,也是一个工具。在这个平台上,我们能...

  • npm 使用技巧

    1.1 npm查看库的最新版本: npm view jquery version; 1.2npm查看库的全部版...

  • npm 使用技巧

    国内可以使用淘宝镜像的 cnpm mac系统使用-g全局安装的时候,需要在前面加 sudo npm xxxx下面示...

  • Windows下安装hexo

    安装Node.js 安装GIT 使用 npm 即可完成 Hexo 的安装。 $ npm install -g he...

网友评论

      本文标题:npm 与 git 使用技巧

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