npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

multicolour-server-hapi

v1.9.2

Published

HapiJS server generator for Multicolour

Downloads

115

Readme

multicolour-server-hapi

Greenkeeper badge

Build Status Coverage Status Dependency Status

HapiJS Server generator for Multicolour. Comes with Hapi

  • Swagger for automatic endpoint documentation
  • Rate limiting
  • Server side caching
  • Payload validation and documentation
  • Response validation and documentation
  • CSRF token validation

Via multicolour CLI

multicolour plugin-add server-hapi

Via npm CLI

npm i --save multicolour-server-hapi

Manual usage in a Multicolour app.

To use the plugin manually (as opposed to via the Multicolour CLI) use the .use(plugin) function of multicolour.

"use strict"

// Configure our service.
const my_service = require("multicolour")
  // Configure the service core and scan for content.
  .new_from_config_file_path("./config.js")
  .scan()

  // Register the server plugin.
  .use(require("multicolour-server-hapi"))

// Start the service.
my_service.start()

API documentation

The swagger documentation is only available when the NODE_ENV environmental isn't equal to production. You can visit your API's documentation by visiting http://localhost:1811/docs. If your custom routes aren't showing up on that page you need to add the api tag to it in it's config.

Rate limiting

To add rate limiting simply update your services config.js settings to include rate_limiting. Example:

Before rate limiting will work you need to specify a server side caching mechanism first in your server configuration, for example to add an in-memory cache

{
  api_server: {
    cache: require("catbox-memory")
  },
  settings: {
    rate_limiting: {
      // Rate limiter docs are here  
      // https://www.npmjs.com/package/hapi-rate-limit
    }
  },
  ...config
}

More documentation is available on the Hapi website

Validation

The plugin reads your blueprints and creates Joi payload validations and Joi response validations.

CSRF

This plugin supports CSRF tokens. You can get a token for your session by running a GET request on /csrf.

Your requests will all 403 without the x-csrf-token header set to the value returned by the /csrf endpoint.

Enable or disable CSRF by adding my_service.reply("csrf_enabled", Boolean) to your app.js.

Plugins

This server has support for plugins, such as the OAuth plugin via the .use interface i.e my_server.use(require("multicolour-hapi-oauth"))

HapiJS plugins/access.

Access to the raw HapiJS server is possible via server.request("raw") which will return the instance of HapiJS behind the plugin.