首页 > 代码库 > nodejs个人配置

nodejs个人配置

国内镜像,飞一般的感觉!
编辑 ~/.npmrc 加入下面内容
registry = http://registry.cnpmjs.org

使用supervisor提高nodejs调试效率(免去重复启动关闭服务器)
npm -g install supervisor

利用Chrome调试nodejs
/*** https://github.com/node-inspector/node-inspector ***/
安装:
npm install -g node-inspector // -g 导入安装路径到环境变量
使用:
node-inspector & //启用
node / supervisor --debug / --debug-brk fileName
( node --debug app.js )
访问 http://localhost:8080/debug?port=5858 即为debug工具
然后正常访问web程序就会进入debug

NVM管理多个nodejs版本 :
To install you could use the install script (requires Git) using cURL:
curl https://raw.github.com/creationix/nvm/master/install.sh | sh
or Wget:
wget -qO- https://raw.github.com/creationix/nvm/master/install.sh | sh

source ~/.nvm/nvm.sh 或者 . ~/.nvm/nvm.sh 启动nvm。

执行echo ". ~/.nvm/nvm.sh" >> ~/.bashrc 则可以开机启动nvm。

 

nodejs个人配置