coffeeify-redux

0.1.0 • Public • Published

coffeeify-redux build status

browserify v2 plugin for coffee-script-redux

mix and match .coffee and .js files in the same project

if you prefer the original coffee-script compiler, please use the original coffeeify

example

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 * 111

install 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

install

With npm do:

npm install coffeeify-redux

license

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i coffeeify-redux

Weekly Downloads

1

Version

0.1.0

License

MIT

Last publish

Collaborators

  • thlorenz