Node.js notepad++配置

原创转载请注明出处:http://agilestyle.iteye.com/blog/2338070

 

Notepad++安装(一路默认即可)

Node.js notepad++配置
 

Node.js安装(LTS版本,一路默认即可)

Node.js notepad++配置

 

使用Notepad++自带的Plugin Manager安装JSTool和NppExec插件

Node.js notepad++配置
 

Settings->Preferences配置代码Auto-Completion

Node.js notepad++配置
 

使用NppExec插件配置Node.js

使用Node.js开发,运行一个项目,通常有两种情况:

对于简单的js文件,可以执行“node xxx.js”

Node.js notepad++配置
 

对于基于express的应用,可以执行“npm start”(如果发现3000端口被占用,可以使用netstat -aon | findstr "3000"找到占用的进程,打开任务管理器kill掉占用的进程)

Node.js notepad++配置
 

访问http://localhost:3000看看Express的效果
Node.js notepad++配置

 


使用命令行执行Node.js效率太低,所以需要配置NppExec插件

Plugins->NppExec

取消 Console Commands History

选中 Save all files on execute

选中 Follow $(CURRENT_DIRECTORY)

Node.js notepad++配置

 

Plugins->NppExec->Execute

在对话框中输入

cd "$(CURRENT_DIRECTORY)"
node $(FILE_NAME)

保存为RunNodejs
Node.js notepad++配置
 

接着配置另一个RunNPM

cd "$(CURRENT_DIRECTORY)"
npm.cmd start

保存为RunNPM 

Node.js notepad++配置

 

Plugins->NppExec->Advanced Options配置高级选项

选中Place to the Macros submenu,在Associated script下拉列表框里选择RunNodejs,在上面的Item name编辑框里输入“RunNodejs”,再点击左下角的Add/Modify按钮
Node.js notepad++配置
同理“RunNPM” 

Node.js notepad++配置
 

Settings->Shortcut Mapper配置快捷键

这里配置

RunNodejs->Ctrl + Alt + F5

RunNPM->Ctrl+F5

Node.js notepad++配置
 

查看配置的效果

RunNodejs

Node.js notepad++配置
RunNPM

Node.js notepad++配置