https://github.com/ilanfrumer/sublime-js-coffee-build-systems
Javascript & Coffeescript build systems (plugin) for sublime text
https://github.com/ilanfrumer/sublime-js-coffee-build-systems
Last synced: 9 months ago
JSON representation
Javascript & Coffeescript build systems (plugin) for sublime text
- Host: GitHub
- URL: https://github.com/ilanfrumer/sublime-js-coffee-build-systems
- Owner: IlanFrumer
- Created: 2013-12-10T11:46:15.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-08-26T07:33:59.000Z (almost 11 years ago)
- Last Synced: 2025-04-05T20:33:46.332Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 173 KB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
### [Javascript & Coffeescript build systems](https://sublime.wbond.net/packages/JavaScript%20%26%20Coffeescript%20Build%20Systems) (plugin for sublime text)
#### javascript
- **ctrl+b**: execute code.
- **ctrl+shift+b**: compile & output (js2coffee).
- **ctrl+shift+h**: execute code in ec6(Harmony) mode.
#### javascript(babel)
- **ctrl+b**: execute code.
- **ctrl+shift+b**: compile & output (babel).
#### coffeescript
- **ctrl+b**: execute code.
- **ctrl+shift+b**: compile & output (coffee).
#### html
- **ctrl+b**: compile & output (html2jade).
#### jade
- **ctrl+b**: compile & output (jade).
#### typescript
- **ctrl+b**: compile & execute code (typescript).
- **ctrl+shift+b**: compile (typescript).
### Dependencies
- [node.js](http://nodejs.org/download/)
- `npm install -g coffee-script js2coffee`
- `npm install -g jade html2jade`
- `npm install -g typescript`
- `npm install -g babel`
- [sublime-jade](https://sublime.wbond.net/packages/Jade)
- [sublime-better-coffeescript](https://github.com/aponxi/sublime-better-coffeescript)
## Update npm gloabl packages
- `sudo npm update -g`
## Warning!
Notice, this plugin runs (js/coffee) scripts via the command line but it is not responsable for terminating them. Avoid running scripts with infinite loops (like server connections) or kill them manually(`pkill -f node`).
