Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
#rejoice
hapi.js CLI.
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`
FAQs
hapi.js CLI
We found that rejoice demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.