browserify v2 plugin for coffee-script
mix and match .coffee and .js files in the same project
given some files written in a mix of js and coffee:
foo.coffee:
console.log(require './bar.js')bar.js:
module.exports = require('./baz.coffee')(5)baz.coffee:
module.exports = (n) -> n * 111install coffeeify into your app:
$ npm install coffeeify
when you compile your app, just pass -t coffeeify to browserify:
$ browserify -t coffeeify foo.coffee > bundle.js
$ node bundle.js
555
With npm do:
npm install coffeeify
MIT
I am not a coffee-script user so if you use this plugin regularly and want to take it over I will gladly add you as a maintainer on npm.
