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 js/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
// or using regular JS file
// where app.js must export the config object
rejoice -c app.js
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
}
},
"registrations": [
{
plugin: {
register: "good",
options: {
"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"
}]
}
}
},
{
plugin: "lout"
}
}
}
You can specify a specific path to be passed to Glue as the relativeTo
option by using the -p
flag.
rejoice -c app.json -p /full/path/to/project/plugin/dir
This will allow your plugins to use relative paths in the config file. 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`
Multiple modules can be required by using the -r
flag as many times as needed. This example requires two modules from an implied source of node_modules
.
rejoice -c app.json -r babel/register -r dotenv/config
When using -r
with the -p
flag, the -p
flag takes on an additional meaning. In this case, the -p
specifies the path where the module specified in -r
will be found.
rejoice -c app.json -r `module` -p /base/path/to/required/module
The resulting search path for module
would be /base/path/to/required/module/node_modules
.
To specify both a -p
option to be passed to Glue and specify a path to locate the -r
module use an absolute path for -r
.
rejoice -c app.json -p ./lib -r /absolute/path/to/module
FAQs
hapi.js CLI
The npm package rejoice receives a total of 24 weekly downloads. As such, rejoice popularity was classified as not popular.
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.