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

node-app-hive

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-app-hive

Cluster based NodeJS process manager.

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

node-app-hive

Cluster based NodeJS process manager.

This application built upon a unix sockets, so you can use it only on unix based (Linux) platforms.


Usage:

  1. Create a folder for an application sockets, for example /home/my-app/run.

  2. 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');
    
    hive.bind('example-node-app', {
        env: process.env.APP_ENV,
        run_folder: path.normalize(`${__dirname}/run`),
        command_socket: '%namehive.command.sock',
        worker_script: require.resolve('./worker'),
        worker_socket: '%namehive.worker%numworker.sock',
        numworkers: 1,
        watch_glob: [`/home/my-app/src/**/*.{js,json}`]
    }).runtime();
    
    
  3. Make the script executable:

    $ chmod +x /home/my-app/app.js

  4. 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


Commands:

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 -- zero downtime workers reloading.

Persist Master

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, you can use supervisord service:

/etc/supervisord.d/node_proxy_app.ini

[program:node_proxy_app]
command=sh /home/my-app/app.js
numprocs=1
user=www-data
directory=/home/my-app/
autostart=true
autorestart=true
startretries=3
stopsignal=TERM
stdout_logfile=/var/log/node_proxy_app/out.log
stdout_logfile_maxbytes=1MB
stdout_logfile_backups=10
stderr_logfile=/var/log/node_proxy_app/err.log
stderr_logfile_maxbytes=1MB
stderr_logfile_backups=10

Keywords

FAQs

Package last updated on 02 Aug 2019

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