使用sublime text 开发node.js

http://blog.csdn.net/jwkfreedom/article/details/8450005

本机环境: windows7 64位

1. 下载安装sublime text,

不用注册即可完全使用,只是偶尔弹框提示购买,完全可以忍受。

2. 在sublime text下按 Ctrl+Shift+p

在输入框里输入install, 然后选择Package Control: Install Package

使用sublime text 开发node.js

3. 在接下来的对话框中输入nodejs

我这里已经安装过nodejs相关插件,所以没有显示相关插件。如果没有安装过,会显示nodejs相关插件,请全部安装。

使用sublime text 开发node.js

4 把build环境设定为nodejs

在Sublime Text 2菜单 -->Tools-->Build System -->Nodejs

5. 配置环境

Preferences-->Package Setting-->Nodejs-->Default

我的配置:

  1. {
  2. // save before running commands
  3. "save_first": true,
  4. // if present, use this command instead of plain "node"
  5. // e.g. "/usr/bin/node" or "C:\bin\node.exe"
  6. "node_command": "C:\\Program Files\nodejs\node.exe",
  7. // Same for NPM command
  8. "npm_command": "C:\\Program Files\nodejs\npm.cmd",
  9. "expert_mode": true,
  10. "ouput_to_new_tab": false
  11. }

6. 编辑好代码后,Ctrl+b 运行。

运行成功后,如果想停止服务,可以在Tools->Cancel Build来停止服务

附:node.js的简单代码:

======================

调试插件

https://github.com/houfeng0923/NodejsDebug

=================

cmd node-debug app.js

上一篇:逗号分隔的字符串转换为行数据(collection)(续)


下一篇:BZOJ3433: [Usaco2014 Jan]Recording the Moolympics