Browserify plugin for bundling entire choo applications built with jalla, front- and back-end, into a single file. Especially usefull with serverless platforms, e.g. Zeit, AWS etc.
Usage
If you're just using the jalla CLI you'll have to create a server entry file.
The equivalent of running jalla index.js
would be to create a file as such:
// server.jsvar jalla = var app = moduleexports = app
If you already have a server file you will probably need to make some small
changes. Since most serverless platforms expect a single function export,
calling server.listen()
will not work. E.g. [@now/node][@node/now] expects a
function which takes req
and res
. To comply with Now, you would export
app.callback()
which will return a function accepting req
and res
.
// server.jsvar jalla = var app = if processenvIS_SERVERLESS moduleexports = appelse app
Provide the server entry file to browserify and define jallaify
as a plugin.
$ browserify index.js --node --standalone my-app -p jallaify > build.js
Any options provided to jallaify will be forwarded to the compiled jalla app.
$ browserify index.js --node --standalone my-app -p [ jallaify --sw sw.js ] > build.js
The standalone
option is required for browserify to actually expose the
application export and not just execute the bundled code.
The bundled application is intended to run in production mode (not watching for
changes) and serving built assets. Jallaify will make a best effort to infer the
serve
option but it is good practice to explicitly define it.
var jalla = var app = if processenvIS_SERVERLESS moduleexports = appelse app
See Also
License
MIT