1.0.0 • Published 2 months ago

@rabiepenpm/et-nihil-facilis v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

@rabiepenpm/et-nihil-facilis

npm version Build Status js-standard-style

A streaming way to send data to a Node.js Worker Thread.

install

npm i @rabiepenpm/et-nihil-facilis

Usage

'use strict'

const ThreadStream = require('@rabiepenpm/et-nihil-facilis')
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.

External modules

You may use this module within compatible external modules, that exports the worker.js interface.

const ThreadStream = require('@rabiepenpm/et-nihil-facilis')

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(). The message (JSON object) must have the following data structure:

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:

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.

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).

const { parentPort } = require('worker_threads')
parentPort.on('message', function (message) {
  console.log('received:', message)
})

License

MIT

astes2016threefull-widthES2015ES2018callbacksettingsboundjson-schema-validationpromisestyped arraywarninglazytrimRightRegExp#flagscoercibleUint8ClampedArraycore-jsconcurrencyenvtouchdropwebinvariantsyntaxerrorextensiontddlastdefinePropertyelectronsignalscliententriesecmascriptstyleguidees2018chromel10nrm -rfdebuggerpoint-freemapjwtwaapiES2022guidpreserve-symlinksiterationnameargvthroat0metadatajsonbrowserlistxtermnpmdayjscompile lessreact-hook-formstartercryptoUint8ArrayequalityprotobufdeleteexecprotoforEachweakmaptrimshamcolumnES3variablesmonorepocallindicatorautoprefixerparsernegativejasminedataconcatlintiteratecommandhasquerykeyshimfast-clonefixed-widthmoveString.prototype.trimenvironmentworkerMap_.extendprefixserializerformatbluebirdwatchervaluegraphqljavascriptless compileromitStyleSheetcallboundirqlockfileregularpipetrimStartlesscsssharedarraybufferECMAScript 2018lessbindsignalInt32ArraydirectorytextArray.prototype.findLastfiglet[[Prototype]]terminalES2016Array.prototype.flattentrimEndpackagerequirepersistentObject.definePropertybreakreducerloggingsuperagentbddtslibapimimetaptoobjecthttpgdprwatchingpackagesbundlerdirflagdragreadablestreamvariables in csstoArraymkdirschaimergettytypedarraysnodebyteLengthArraytranspileJSON-SchemaECMAScript 2015react animationautheveryarraysObject.getPrototypeOffindupschemetelephonesanitizehookformless cssRFC-6455trimLeftpropertyoutputi18npluginrgbdescriptorwordbreakstylingreduxTypedArraytraversereadablecomputed-typesglobconstES2019fetchgradients css3fullwidthmulti-packageECMAScript 2016Object.valuesvaluesspringtypanionArray.prototype.filterprogresspicomatchconsolesymlinksObjectregular expressionsArray.prototype.flatMapcall-boundfunctionsUint32Arraynodejssuperstructdeterministicendereventsclidebugcss nestingmatchargumentanimationruntimepropstringifydependency managersortgroupByframerwritedataViewgroupES2017gradients cssregexpinstallerstatusfastcopyfindsymbola11yconcatMapArray.prototype.flatoncelimiteast-asian-widthharmonychromiumtostringtagresolvediffyamles2017byteimportredacttimeclassesfromperformanceES2021SetmodulesReactiveXzeroES7@@toStringTagschemaassertsreact posepathsigintcssoptiondataviewfast-copysanitizationcode pointsfile systeminferenceincludesjestnativevalidcorsajvshrinkwrapes2015less mixinserrorpyyamljsonpathiteratorstreames-shimsvalidateless.jsECMAScript 2020setImmediatestylepatchuser-streamssymlinkratelimitperformantgetintrinsicdomstructuredClonestreams2queueMicrotasklinkstringifierintrinsicstreamsbrowserslistcopyHyBiwraphelpersjson-schemaunicodeECMAScript 2019sigtermreuseESgetoptstylesheetimmermkdirECMAScript 5higher-orderassigndependenciestranspilerreact-hooksargsUnderscorermdirjapaneseutilityyupArray.prototype.includesbcryptmimetypesstylesWebSocketpopmotiondescriptionframeworkCSSStyleDeclarationsequenceBigUint64Array-0checkavapasswordECMAScript 2021Rxwindowscss lesseventEmitterstdlibprivate data
1.0.0

2 months ago