Skip to content

Instantly share code, notes, and snippets.

@moenn
Last active January 13, 2019 14:37
Show Gist options
  • Save moenn/36d15dac2ad44ec023e5f5fb76506682 to your computer and use it in GitHub Desktop.
Save moenn/36d15dac2ad44ec023e5f5fb76506682 to your computer and use it in GitHub Desktop.
javascript sublime-build
  1. install node
  2. Create JavaScript build system

Mac

{
  "cmd": ["/usr/local/bin/node", "$file"],
  "selector": "source.js"
}

Windows

{
  "cmd": ["C:/Program Files/nodejs/node.exe", "$file"],
  "selector": "source.js"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment