ga('set', 'anonymizeIp', 1);
Categories: Tech IntroduceWindows

[TechInfo] Run Javascript in Sublime Text 3

Share

方便、省時是coding不可或缺的部分

本文講述如何使用Subline Text編譯javascript

下載並安裝node js

https://nodejs.org/en/下載安裝。

在Sublime中建立New Build System

在Sublime中工具列: Tools->Build System->New Build System

會跑出一個新檔案,將內容置換。

換成

{

"cmd": ["/usr/local/bin/node", "${file}"],

"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",

"working_dir": "${file_path}",

"selector": "source.js",

"variants":

     [

  {

   "name": "Run",

   "cmd":["/usr/local/bin/node", "${file}"]

  }

     ]
}

改完直接存檔,檔名記得修改為自己要的。

在你的js檔案的Build System選擇你剛剛所取的Build System Name,

之後就能使用Sublime執行你的js檔案了。

Jys

Recent Posts

[python] Flask Create RESTful API

This article gi... Read More

3 年 前發表

[Javascript] 新增/刪除JSON中key值

在web訊息交換常會需要對JS... Read More

3 年 前發表

[JAVA] SQL Server Connection

本文介紹JAVA連線SQL s... Read More

3 年 前發表