This article gives a good overview of how to use the build system in Sublime, though I always feel slightly pea-brained when articles like this pop up because they omit the very simple cases and that seems to be all I use.<p>If you use Sublime Text and just want a build system to save and start HTML pages when writing HTML and JavaScript, you can simply do:<p>Tools -> Build System -> New build system, write:<p><pre><code> {
// or add the chrome path to the environment
"cmd": ["C:/Users/ThyUsername/AppData/Local/Google/Chrome/Application/chrome.exe", "$file"],
"selector": "html"
}
</code></pre>
and save. CTRL+B then saves your html file and opens it in Chrome. I think on a Mac you'd do:<p><pre><code> {
"cmd": ["open", "-a", "Safari", "$file"],
"selector": "html"
}</code></pre>