Skip to content

Instantly share code, notes, and snippets.

@elentok
Last active January 3, 2016 03:09
Show Gist options
  • Save elentok/8400301 to your computer and use it in GitHub Desktop.
Save elentok/8400301 to your computer and use it in GitHub Desktop.
Express + Browserify + Coffeeify
browserify = require('browserify-middleware')
coffeeify = require('coffeeify')
browserify.settings('extensions', ['.coffee'])
browserify.settings('transform', [coffeeify])
browserify.settings('grep', /\.coffee$|\.js$/)
app.use '/assets', browserify('./../assets/js/')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment