Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
thread-stream
Advanced tools
The thread-stream npm package is designed to facilitate the creation of writable streams that operate within worker threads in Node.js. This allows for offloading CPU-intensive tasks or I/O-bound tasks to separate threads, improving the performance and responsiveness of Node.js applications.
Creating a basic thread stream
This code demonstrates how to create a basic thread stream using the thread-stream package. It involves specifying a worker file and optional worker data. The stream created can be used like any other writable stream in Node.js.
const ThreadStream = require('thread-stream');
const stream = new ThreadStream({
filename: path.join(__dirname, 'worker.js'),
workerData: { exampleData: 'data' },
sync: false
});
stream.write('Hello, world!');
stream.end();
Handling stream events
This example shows how to handle data and end events from a thread stream. It allows processing of data received from the worker thread and handling the end of the stream.
stream.on('data', (data) => {
console.log('Data from stream:', data);
});
stream.on('end', () => {
console.log('Stream ended.');
});
Workerpool is a package that manages a pool of workers and handles the execution of tasks in these workers. It is similar to thread-stream in that it helps offload tasks to separate threads but differs in its approach by managing multiple workers and tasks rather than focusing on stream-based communication.
Bthreads provides a wrapper around Node.js worker threads, simplifying thread management and communication. While it shares the goal of enhancing performance through threads like thread-stream, bthreads does not specifically focus on stream-based interfaces, offering a broader range of thread management features.
A streaming way to send data to a Node.js Worker Thread.
npm i thread-stream
'use strict'
const ThreadStream = require('thread-stream')
const { join } = require('path')
const stream = new ThreadStream({
filename: join(__dirname, 'worker.js'),
workerData: { dest },
workerOpts: {}, // Other options to be passed to Worker
sync: false, // default
})
stream.write('hello')
// Asynchronous flushing
stream.flush(function () {
stream.write(' ')
stream.write('world')
// Synchronous flushing
stream.flushSync()
stream.end()
})
In worker.js
:
'use strict'
const fs = require('fs')
const { once } = require('events')
async function run (opts) {
const stream = fs.createWriteStream(opts.dest)
await once(stream, 'open')
return stream
}
module.exports = run
Make sure that the stream emits 'close'
when the stream completes.
This can usually be achieved by passing the autoDestroy: true
flag your stream classes.
The underlining worker is automatically closed if the stream is garbage collected.
You may use this module within compatible external modules, that exports the worker.js
interface.
const ThreadStream = require('thread-stream')
const modulePath = require.resolve('pino-elasticsearch')
const stream = new ThreadStream({
filename: modulePath,
workerData: { node: 'http://localhost:9200' }
})
stream.write('log to elasticsearch!')
stream.flushSync()
stream.end()
This module works with yarn
in PnP (plug'n play) mode too!
MIT
FAQs
A streaming way to send data to a Node.js Worker Thread
The npm package thread-stream receives a total of 4,985,241 weekly downloads. As such, thread-stream popularity was classified as popular.
We found that thread-stream demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.