Skip to content

Instantly share code, notes, and snippets.

@simon-lang
Created January 24, 2013 05:38
Show Gist options
  • Save simon-lang/4617946 to your computer and use it in GitHub Desktop.
Save simon-lang/4617946 to your computer and use it in GitHub Desktop.
meteor stylus coffee
If you don't have meteor, install it:
curl https://install.meteor.com | /bin/sh
Then, just copy paste this into your terminal:
meteor create my-app
cd my-app/
meteor add coffeescript
meteor add stylus
js2coffee my-app.js > my-app.coffee
rm my-app.js
mv my-app.css my-app.styl
meteor add bootstrap
meteor
You now have a live-reloading coffeescript + stylus app in your browser.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment