You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/pitfall/pdfkit/node_modules/coffeeify/readme.markdown

68 lines
1.0 KiB
Markdown

7 years ago
# coffeeify
browserify v2 plugin for coffee-script
mix and match `.coffee` and `.js` files in the same project
[![Build Status](https://travis-ci.org/jnordberg/coffeeify.png?branch=master)](https://travis-ci.org/jnordberg/coffeeify)
# example
given some files written in a mix of `js` and `coffee`:
foo.coffee:
``` coffee
console.log(require './bar.js')
```
bar.js:
``` js
module.exports = require('./baz.coffee')(5)
```
baz.coffee:
``` js
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
```
you can omit the `.coffee` extension from your requires if you add the extension to browserify's module extensions:
``` js
module.exports = require('./baz')(5)
```
```
$ browserify -t coffeeify --extension=".coffee" foo.coffee > bundle.js
$ node bundle.js
555
```
# install
With [npm](https://npmjs.org) do:
```
npm install coffeeify
```
# license
MIT