在sublime text 3中編譯javascript

1.整理步驟:node

1).安裝node.js;linux

2).配置js編譯系統;shell


2.過程windows

1).先是按照網上的方法,在配置的時候輸入以下內容:spa

{
"cmd": ["node", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"working_dir": "${project_path:${folder}}",
"selector": "source.js",
"shell": true,
"encoding": "utf-8",
"windows": {
"cmd": ["node", "$file"]
},
"linux": {
"cmd": ["killall node; node", "$file"]
}
}
code


結果一直報 [Decode error - output not utf-8] 錯誤;utf-8

2).後來直接把配置內容改成cmd

{
"cmd":["D:/Program Files/nodejs/node.exe","$file"],
"selector":"*.js"
}
編譯

解決問題了,其中 「D:/Program Files/nodejs/node.exe」是nodejs的路徑ejs

相關文章
相關標籤/搜索