Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eriwen/coffee-script-source-maps-ftw
Coffee Script Source Maps FTW!
https://github.com/eriwen/coffee-script-source-maps-ftw
Last synced: 24 days ago
JSON representation
Coffee Script Source Maps FTW!
- Host: GitHub
- URL: https://github.com/eriwen/coffee-script-source-maps-ftw
- Owner: eriwen
- Created: 2013-04-27T17:19:15.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-05-02T03:29:52.000Z (over 11 years ago)
- Last Synced: 2024-04-15T11:28:24.052Z (7 months ago)
- Language: Ruby
- Size: 132 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CoffeeScript Source Maps Example Apps
Brought to you by [Eric Wendelin](https://twitter.com/eriwen) [![endorse](https://api.coderwall.com/eriwen/endorsecount.png)](https://coderwall.com/eriwen)## NodeJS
#### Prerequisites
* [Chrome Canary](https://www.google.com/intl/en/chrome/browser/canary.html) or recent [Firefox](http://getfirefox.com)
* Enable Source maps in DevTools/Settings```
brew install node
npm install coffee-script -g
npm install grunt-cli -g
``````
cd nodejs-example
npm install --dev
grunt watch:app &
node server.js
open http://localhost:3000
```## Rails
#### Prerequisites
* [Install Ruby 2.0](https://coderwall.com/p/tptocq)
* `gem install bundler````
cd rails-example
bundle install
rails s
open http://localhost:4000
```