Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
A simple abstraction for Node.js worker_threads
, allowing you to create and share a Map (hash table)
between worker threads and the main process. This simplifies the process of managing shared data and communication between worker threads.
Under the hood, the library uses SharedArrayBuffer
to create shared memory, enabling seamless data sharing between threads. Additionally, it uses Atomics
mechanism to implement a mutex, ensuring thread safety and preventing race conditions during data access and manipulation.
npm i worker_map
First, let's create a simple hash map structure in main process, then create a worker thread and share the hash.
// main.js
const { Worker } = require('worker_threads');
const { WorkerMap } = require('worker_map');
const map = new WorkerMap();
map.set('balance', 100); // sync operation
new Worker('./worker.js', {
workerData: {
mapBuffer: map.toSharedBuffer(),
},
});
setTimeout(() => {
console.log(map.get('balance')); // 200
}, 50);
Now, let's access the shared hash map structure in the worker thread.
// worker.js
const { WorkerMap } = require('worker_map');
const { workerData } = require('worker_threads');
const map = new WorkerMap(workerData.mapBuffer);
console.log(map.get('balance')); // 100
// The change will be reflected in the main process as well
map.set('balance', 200);
Worker_map is much like JavaScript's regular Map.
map.set(key, value)
map.set('name', 'John'); // true
map.get(key):
const name = map.get('name'); // 'John'
map.delete(key):
map.delete('name'); // true
map.delete('something'); // false because it doesn't exist
map.has(key)
map.has('name'); // true
map.has('country'); // false
map.size()
map.has('size'); // 1
map.keys()
map.keys(); // [ 'name' ]
map.toSharedBuffer()
const buffer = map.toSharedBuffer();
const sameMap = new WorkerMap(buffer);
map.toObject()
const mapObject = map.toObject(); // { ... }
mapObject.name; // 'John'
See the contributing guide for detailed instructions on how to get started with our project.
TODO
map.clear()
map.entries()
map.forEach()
Please be aware of the following limitations when using our library:
FAQs
Tread-safe map structure for worker_threads.
The npm package worker_map receives a total of 8 weekly downloads. As such, worker_map popularity was classified as not popular.
We found that worker_map 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.