使用sublime text 開發node.js

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

本機環境: windows7 64位git

1. 下載安裝sublime text,github

不用註冊便可徹底使用,只是偶爾彈框提示購買,徹底能夠忍受。npm

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

在輸入框裏輸入install, 而後選擇Package Control: Install Packageapp

3. 在接下來的對話框中輸入nodejsdom

我這裏已經安裝過nodejs相關插件,因此沒有顯示相關插件。若是沒有安裝過,會顯示nodejs相關插件,請所有安裝。ui

4 把build環境設定爲nodejsthis

在Sublime Text 2菜單 -->Tools-->Build System -->Nodejs .net


5. 配置環境

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

個人配置:

 

[plain]  view plain copy
 
  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

相關文章
相關標籤/搜索