1) 서브라임 다운로드 및 설치, 다운로드 목록 : http://www.jb51.net/softs/132432.html
2) sublime용 nodejs 플러그인을 다운로드하세요. Nodejs 플러그인을 sublime에 통합해야 합니다. 다운로드 주소: https://github.com/tanepiper/SublimeText-Nodejs
3) zip 파일의 압축을 풀고 폴더 이름을 "Nodejs"로 바꿉니다
4) sublime을 열고 "기본 설정" --> "패키지 찾아보기"를 조작한 다음 많은 언어 IDE 플러그인이 저장된 디렉터리를 엽니다.
5) "Nodejs" 폴더를 이 디렉터리에 복사합니다. 이 정도면 충분합니까? 그래도 작동하지 않으면 구성 파일을 변경해야 합니다.
6) Nodejs 폴더를 열고 "Nodejs.sublime-build" 파일을 찾아 sublime으로 드래그하면 다음과 같이 표시됩니다.
{ "cmd": ["node", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "selector": "source.js", "shell":true, "encoding": "cp1252", "windows": { "cmd": ["taskkill /F /IM node.exe & node", "$file"] }, "linux": { "cmd": ["killall node; node", "$file"] } }
7) Sublime을 사용하여 "Nodejs.sublime-settings" 파일을 열거나 "preference"를 설정하려면 --> "package settings" --> "Nodejs" --> "setting-default" 파일을 열고 변경합니다. 다음으로:
{ // save before running commands "save_first": true, // if present, use this command instead of plain "node" // e.g. "/usr/bin/node" or "C:\bin\node.exe" "node_command": /usr/bin/nodejs, // Same for NPM command "npm_command": /usr/bin/npm, // as 'NODE_PATH' environment variable for node runtime "node_path": false, "expert_mode": false, "ouput_to_new_tab": false }