hjsonify
hjsonify is a browserify transform to require Human JSON (Hjson) files.
Require Hjson files in your files just like you would a JSON file.
Install
$ npm install hjsonify
Usage
Programatic use with Browserify:
var b = fs = hjsonify = ; b;b;b;
CLI use with Browserify:
$ browserify -t hjsonify app.js > bundle.js
Example
config.hjson:
{ port: 1000 //defaults to 80}
app.js:
var config = ;console;// => 1000
$ browserify -t hjsonify app.js | node1000