New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

jallaify

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jallaify

Browserify plugin for bundling applications built with jalla

  • 1.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-40%
Maintainers
2
Weekly downloads
 
Created
Source

jallaify 💫

npm version build status downloads style

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.js
var jalla = require('jalla')
var app = jalla('index.js')
module.exports = app.callback()

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.js
var jalla = require('jalla')
var app = jalla('index.js')

if (process.env.IS_SERVERLESS) module.exports = app.callback()
else app.listen(8080)

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 = require('jalla')
var app = jalla('index.js', {
  serve: Boolean(process.env.IS_SERVERLESS)
})

if (process.env.IS_SERVERLESS) module.exports = app.callback()
else app.listen(8080)

See Also

License

MIT

Keywords

FAQs

Package last updated on 26 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc