Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

boring-cluster

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

boring-cluster

A really boring cluster module

  • 6.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

boring-cluster

A really boring cluster module

Donate


Installation

npm i boring-cluster

Usage

This is all you need to do:

const cluster = require('boring-cluster')
// `thing` could be a server, or any other process you want to cluster
cluster('./thing')

An optional second argument can be passed with the shape

{ workers: number, name: string }

Example:

cluster('some-thing', { workers: 2, name: 'My Awesome App' })

Full example with an Express server:

// index.js
require('boring-cluster')(
  'server',
  { name: 'sweet server', workers: 2 }
)

// server.js
const cluster = require('cluster') // node builtin cluster
const express = require('express')
const port = 2000
const app = express

// all your application-specific stuff goes here
app.use(express.static(__dirname))
app.listen(port, () => {
  console.log(`Cluster worker ${cluster.worker.id} listening on ${port}`)
})

Changes

  • 5.0.0 - 5th January 2019:
    • Bump min engines support to Node 10 (LTS)
  • 4.0.0 - 22nd September 2018:
    • Drop Node 6 support
  • 3.0.0 - 6th May 2018:
    • Resolve module internally
    • To upgrade, change cluster(resolve(__dirname, 'foo')) to cluster('foo')

LICENSE

Keywords

FAQs

Package last updated on 10 May 2023

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