Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pinojs/thread-stream
A streaming way to send data to a Node.js Worker Thread
https://github.com/pinojs/thread-stream
Last synced: 6 days ago
JSON representation
A streaming way to send data to a Node.js Worker Thread
- Host: GitHub
- URL: https://github.com/pinojs/thread-stream
- Owner: pinojs
- License: mit
- Created: 2021-03-05T10:51:02.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-09T11:19:33.000Z (about 1 month ago)
- Last Synced: 2025-01-06T05:04:55.610Z (14 days ago)
- Language: JavaScript
- Size: 184 KB
- Stars: 237
- Watchers: 12
- Forks: 24
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# thread-stream
[![npm version](https://img.shields.io/npm/v/thread-stream)](https://www.npmjs.com/package/thread-stream)
[![Build Status](https://img.shields.io/github/actions/workflow/status/pinojs/thread-stream/ci.yml?branch=main)](https://github.com/pinojs/thread-stream/actions)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://standardjs.com/)A streaming way to send data to a Node.js Worker Thread.
## install
```sh
npm i thread-stream
```## Usage
```js
'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`:
```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`](https://nodejs.org/api/stream.html#stream_new_stream_writable_options)
flag your stream classes.The underlining worker is automatically closed if the stream is garbage collected.
### External modules
You may use this module within compatible external modules, that exports the `worker.js` interface.
```js
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!
### Emit events
You can emit events on the ThreadStream from your worker using [`worker.parentPort.postMessage()`](https://nodejs.org/api/worker_threads.html#workerparentport).
The message (JSON object) must have the following data structure:```js
parentPort.postMessage({
code: 'EVENT',
name: 'eventName',
args: ['list', 'of', 'args', 123, new Error('Boom')]
})
```On your ThreadStream, you can add a listener function for this event name:
```js
const stream = new ThreadStream({
filename: join(__dirname, 'worker.js'),
workerData: {},
})
stream.on('eventName', function (a, b, c, n, err) {
console.log('received:', a, b, c, n, err) // received: list of args 123 Error: Boom
})
```### Post Messages
You can post messages to the worker by emitting a `message` event on the ThreadStream.
```js
const stream = new ThreadStream({
filename: join(__dirname, 'worker.js'),
workerData: {},
})
stream.emit('message', message)
```On your worker, you can listen for this message using [`worker.parentPort.on('message', cb)`](https://nodejs.org/api/worker_threads.html#event-message).
```js
const { parentPort } = require('worker_threads')
parentPort.on('message', function (message) {
console.log('received:', message)
})
```## License
MIT