conga-browserify
v0.0.1
Published
Conga.js bundle which provides browserify functionality to projects
Downloads
2
Readme
conga-browserify
Overview
This is a bundle for the Conga.js framework which uses browserify to allow you to expose modules within your application to the browser.
Configuration
# config.yml
browserify:
# bundles to create
bundles:
mybundle:
path: js/user.js
expose: user
src:
- demo-bundle:model/user
Usage
Jade example:
// layout.jade
script(src='/js/user.js')