
Product
Introducing Reports: An Extensible Reporting Framework for Socket Data
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.
Turn node's multitasking modules, child_process and worker_threads into simple async functions
multee is a "battery" API. It turns node's multitasking modules, namingly child_process and worker_threads, into simple async functions.
Without multee, you need to listen to messages from your threads/processes, and it is hard to integrate the listener to other part of your code. Also, when there are multiple operations inside the worker, we have to implement the dispatching logic inside the message listener.
The code will look like below without multee
// worker.js
process.on('message', (msg) => {
// do heavy load job
process.send(job_result)
})
// master.js
const child = fork('./worker')
process.on('message', (msg) => {
// if is job result
part2(msg)
})
function part1() {
child.send(payload_for_worker)
}
function part2(result) {
// do the rest with result
}
And with multee, it's just as easy as calling an async function.
// worker.js
const Multee = require('multee')
const multee = Multee('worker') // worker_threads, use 'child' for child_process
export const jobA = multee.createHandler('jobA', () => {
// do the heavy load here
})
module.exports = () => {
const worker = multee.start(__filename)
return { test: jobA(worker) }
}
// master.js
async function partA() {
const worker = require('./worker')
const result = await worker.jobA()
// do the rest with result
}
multee works with Typescript. As you can't directly start worker_threads from Typescript, multee includes the battery to handle that. note: ts-node needed as a peer dependency when using Typescript.
MIT
FAQs
Turn node's multitasking modules, child_process and worker_threads into simple async functions
The npm package multee receives a total of 223 weekly downloads. As such, multee popularity was classified as not popular.
We found that multee 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.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.