0.1.0 • Published 11 years ago
kheprify v0.1.0
kheprify
A Browserify transform for easily integrating the Khepri language into your projects.
This code is mainly hacked together from coffeeify (thanks!).
usage
Install kheprify into your app:
$ npm install kheprifyWhen you compile your app, just pass -t kheprify to browserify:
$ browserify -t kheprify foo.kep > bundle.js
$ node bundle.js
555you can omit the .kep extension from your requires if you add the extension to browserify's module extensions:
$ browserify -t kheprify --extension=".kep" foo.kep > bundle.js