🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

fastify-bankai

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastify-bankai

Bankai assets compiler for Fastify

latest
Source
npmnpm
Version
0.4.0
Version published
Weekly downloads
1
-80%
Maintainers
1
Weekly downloads
 
Created
Source

fastify-bankai

js-standard-style Build Status Greenkeeper badge

If you need to compile (browserify style!) your code, this plugin is for you! Internally it uses bankai, so refer to its documentation for the options.

fastify-bankai will automatically live-reload your HTML and regenerate your bundle whenever your code change. This can be disabled in test or in production.

Install

npm i fastify-bankai --save

Usage

Simply require this plugin, pass the entry file and you are done!

const fastify = require('fastify')()

fastify.register(require('fastify-bankai'), {
  entry: './client.js'
})

fastify.listen(3000, err => {
  if (err) throw err
  console.log('Server listenting on localhost:', fastify.server.address().port)
})

In tests or in production

If you are including fastify-bankai in any test run or in production, you must disable the automatic watch mode:

const fastify = require('fastify')()

fastify.register(require('fastify-bankai'), {
  entry: './client.js',
  watch: false
})

fastify.listen(3000, err => {
  if (err) throw err
  console.log('Server listenting on localhost:', fastify.server.address().port)
})

Options

  • entry: Your application entry point
  • prefix: prefix all paths served by fastify-bankai with the given path

The option object is passed directly to bankai.

Acknowledgements

This project is kindly sponsored by:

License

Licensed under MIT.

Keywords

browserify

FAQs

Package last updated on 28 Jan 2018

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