<h2>快速搭建 Node.js 开发环境</h2>
<h4>node.js有两种安装方式:源码安装以及nvm安装,首先介绍下nvm的安装方式</h4><h5>为了解决众多小伙伴安装被墙的问题,故在这做一下笔记分享给大家</h5>
注:
nvm:Node Version Manager
1.Linux和Mac OS环境下, 请使用 nvm 来安装你的 node 开发环境, 保持系统的干净.
2.Windows下请使用 nvmw 来替代 nvm
<h3>Linux Installation </h3>
1.脚本安装方法:
$~ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
or Wget:
$~ wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
最后
$~ source ~/.bashrc即可
2.Git 安装
$~ cd ~/
$~ git clone https://github.com/creationix/nvm.git.nvm
接着手动添加环境变量在(~/.bashrc或者 ~/.profile 或者 ~/.zshrc)下:
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] &&. "$NVM_DIR/nvm.sh" # This loads nvm
保存
source ~/.bashrc
接着你便可以在终端中运行nvm了
通过 nvm 安装任意版本的 node
$~ nvm install node
默认是国外源,特别慢: http://nodejs.org/dist/
此处切换 淘宝源 :
编辑~/.bashrc文件:
export NVM_NODEJS_ORG_MIRROR= https://npm.taobao.org/mirrors/node
保存
然后执行$~ nvm install node即可,速度相当快
<h2>windows 环境的 nvmw 可以参照 这里 </h2>
<h1>使用 cnpm 加速 npm </h1>
可以通过简单的 ---registry
参数, 使用国内的镜像 https://registry.npm.taobao.org :
然而本人推荐你安装 cnpm :
参照着官网步骤:
使用说明
你可以使用我们定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm
$ npm install -g cnpm --registry= https://registry.npm.taobao.org
或者你直接通过添加 npm
参数 alias
一个新命令:
alias cnpm="npm --registry= https://registry.npm.taobao.org --cache=$HOME/.npm/.cache/cnpm --disturl= https://npm.taobao.org/dist --userconfig=$HOME/.cnpmrc"# Or alias it in .bashrc or .zshrc$ echo '\n#alias for cnpm\nalias cnpm="npm --registry= https://registry.npm.taobao.org \ --cache=$HOME/.npm/.cache/cnpm \ --disturl= https://npm.taobao.org/dist \ --userconfig=$HOME/.cnpmrc"' >>~/.zshrc &&source ~/.zshrc
安装模块
$~ cnpm install [name]
同步模块
直接通过 sync
命令马上同步一个模块, 只有 cnpm
命令行才有此功能:
$~ cnpm sync connect
当然, 你可以直接通过 web 方式来同步: /sync/connect
$ open https://npm.taobao.org/sync/connect
其它命令
支持 npm
除了 publish
之外的所有命令, 如:
$ cnpm info connect
这个代码是淘宝自己自带的一个库,因为很多没有买CSS服务的店铺是无法自定义自己做效果的,所以淘宝就有这些对外开放的代码,这样的代码也只有在淘宝里面才会实现效果,在别的网页预览也是无法实现效果的像这样的也挺好,可以不用买模板实现一些效果,有代码基础的话,还可以适当修改一些效果,达到自己想要的目的
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)