
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
boring-cluster
Advanced tools
A really boring cluster module
npm i boring-cluster
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}`)
})
engines
support to Node 10 (LTS)cluster(resolve(__dirname, 'foo'))
to cluster('foo')
FAQs
A really boring cluster module
The npm package boring-cluster receives a total of 1 weekly downloads. As such, boring-cluster popularity was classified as not popular.
We found that boring-cluster 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.