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

rejoice

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rejoice

hapi.js CLI

  • 2.0.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

#rejoice

hapi.js CLI.

Build Status

Lead Maintainer - Lloyd Benson

Rejoice is a CLI tool for hapi which requires a json file with the config. It relies on the composer library called glue (http://github.com/hapijs/glue).

To start it up simply:

rejoice -c app.json

where app.json may look something like:

{
    "connections": [
        {
            "port": 8080,
            "routes": {
                "timeout": {
                    "server": 10000
                }
            },
            "load": {
                "maxHeapUsedBytes": 1073741824,
                "maxRssBytes": 2147483648,
                "maxEventLoopDelay": 5000
            },
            "labels": [
                "api",
                "http"
            ]
        },
        {
            "port": 8999,
            "labels": [
                "admin"
            ]
        }
    ],
    "server": {
        "load": {
            "sampleInterval": 1000
        }
    },
    "plugins": {
        "good": {
            "opsInterval": 5000,
            "requestHeaders": true,
            "reporters": [{
                "reporter": "good-console",
                "events": { "response": "*", "ops": "*", "log": "*", "error": "*" }
            },
            {
                "reporter": "good-file",
                "events": { "response": "*", "error": "*" },
                "config": "/log/response.log"
            },
            {
                "reporter": "good-file",
                "events": { "ops": "*" },
                "config": "/log/ops.log"
            }]
        },
        "lout": {}
    }
}

You can specify a specific node_modules top level path by using the -p flag.

rejoice -c app.json -p /full/path/node_modules

This will allow your plugins to use relative paths in the config file as well. See the example below.

{
    "connections": [
        {
            "port": 8080,
            "labels": [
                "api",
                "http"
            ]
        }
    },
    "plugins": {
        "good": {
            "opsInterval": 5000,
            "requestHeaders": true,
            "reporters": [{
                "reporter": "good-console",
                "events": { "response": "*", "ops": "*", "log": "*", "error": "*" }
            },
        },
        "lout": {},
        "./myplugin": {}
    }
}

If you need a module required before your application is loaded you can use the -r flag.

rejoice -c app.json -r `module`

Keywords

FAQs

Package last updated on 08 Aug 2015

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