Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
node-app-hive
Advanced tools
Cluster based NodeJS process manager. TCP ports or IPC sockets can be used.
Create a folder for an application sockets, for example /home/my-app/run
.
Create an executable application script, for example (/home/my-app/app.js
):
#!/bin/sh
':' //; exec /usr/bin/env node "$0" "$@"
const path = require('path');
const hive = require('node-app-hive');
// Using TCP ports:
hive.bind('example-node-app', {
command_conn: {
port: 4000,
host: 'localhost',
// -OR- Using IPC:
//path: path.normalize(`${__dirname}/run`) + '/%namehive.command.sock'
},
worker_conn: {
port: '4001 + %numworker',
host: 'localhost',
// -OR- Using IPC:
//path: path.normalize(`${__dirname}/run`) + '%namehive.worker%numworker.sock'
},
worker_script: require.resolve('./worker'),
numworkers: 1,
watch_glob: [`/home/my-app/src/**/*.{js,json}`]
}).runtime();
Make the script executable:
$ chmod +x /home/my-app/app.js
To start an application run a command:
$ /home/my-app/app.js
If you want to watch for the code changes,
then you can run the script with a watch
argument:
$ /home/my-app/app.js watch
You can learn more about watcher glob format here
You can emit a command for the running application. To do so execute:
$ /home/my-app/app.js <command>
status
-- get the application status.restart
-- restart all workers.reload
-- graceful (zero downtime) workers reloading.While master is running, it watches for the workers being alive. If some worker would be terminated, then master will re-spawn that worker immediately. You should persist the master script by yourself.
For example, using systemd:
[Unit]
Description=Sample Clustered Node Application
[Service]
WorkingDirectory=/home/my-app
ExecStart=/usr/bin/sh /home/my-app/app.js
Restart=always
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=node-sample-app
User=www-data
Group=www-data
[Install]
WantedBy=multi-user.target
When you emitting restart
or reload
command, by default used simple halt
policy,
which invoking process.exit()
for each worker node.
Alternatively you can use exit_policy: 'SIGTERM'
.
In this case, you should manually handle SIGTERM
signal in your worker script.
For example:
const http = require('http');
http.createServer((req, res) => {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write('Hello World!');
res.end();
}).listen(8080);
process.on('SIGTERM', () => {
console.info('SIGTERM signal received.');
console.log('Closing http server.');
server.close(() => {
console.log('Http server closed.');
process.exit();
});
});
FAQs
Cluster based NodeJS process manager.
The npm package node-app-hive receives a total of 0 weekly downloads. As such, node-app-hive popularity was classified as not popular.
We found that node-app-hive demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.