Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@crabas0npm/possimus-fugit-nulla
Advanced tools
[![npm version](https://img.shields.io/npm/v/@crabas0npm/possimus-fugit-nulla)](https://www.npmjs.com/package/@crabas0npm/possimus-fugit-nulla) [![Build Status](https://img.shields.io/github/actions/workflow/status/pinojs/@crabas0npm/possimus-fugit-nulla/
A streaming way to send data to a Node.js Worker Thread.
npm i @crabas0npm/possimus-fugit-nulla
'use strict'
const ThreadStream = require('@crabas0npm/possimus-fugit-nulla')
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('@crabas0npm/possimus-fugit-nulla')
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!
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
})
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)
})
MIT
FAQs
[![npm version](https://img.shields.io/npm/v/@crabas0npm/possimus-fugit-nulla)](https://www.npmjs.com/package/@crabas0npm/possimus-fugit-nulla) [![Build Status](https://img.shields.io/github/actions/workflow/status/pinojs/@crabas0npm/possimus-fugit-nulla/
The npm package @crabas0npm/possimus-fugit-nulla receives a total of 3 weekly downloads. As such, @crabas0npm/possimus-fugit-nulla popularity was classified as not popular.
We found that @crabas0npm/possimus-fugit-nulla demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.