figify
v0.1.4
Published
fig.js browserify transform
Downloads
12
Readme
figify
fig.js browserify transform
introduction
Unlike some other ehm... good frameworks, all components in fig have to be compiled in order for fig.js to digest them correctly. This limitation is posed due to the fact that packing the whole pug library into a browser package is damn non-sensical considering how much it weights by itself (minified or not), increasing the size of fig.js by two orders of magnitude (rough estimate). If you already know how to use browserify, just use figify
as a transform.
Figify attempts to transform all files you require in your app that end in .pug
or .fig
into modules that export a compiled fig component.
usage
cli
browserify <input> -t figify -o <output>
api
const browserify = require('browserify')
const figify = require('figify')
const b = browserify('main.js')
b.transform(figify)
b.bundle().pipe(process.stdout)
install
npm install figify --save
license
MIT
related
- fig.js - experimental front-end ui framework
- fig-compiler - fig.js component compiler
- fig-web - fig.js website