npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tekuconcept/multithreaded

v1.1.1

Published

Simple multithreaded tasks in NodeJS using TypeScript

Readme

Multithreaded

NPM Latest Release

Multithreaded is a lightweight utility for running multithreaded workloads in Node.js using native worker threads, with first-class TypeScript support.

It abstracts away most of the worker-thread boilerplate — entry resolution, messaging, and setup — so you can focus on defining worker logic and exchanging data between threads.

Features

  • Simple API for managing Node.js worker threads
  • TypeScript-first design with strong typings
  • Works with both ESM and CommonJS projects
  • Supports ts-node for local development
  • Handles worker bootstrapping internally

Installation

This module is available through the npm registry.

$ npm install @tekuconcept/multithreaded

Exmples

Async Value Functions

For basic multi-threading, consider using asyncValue. (Works on all threads)

const value = await Multithreaded.asyncValue<number>(
    // Calculate the fibonacci value at `n`
    (n: number) => {
        if (n <= 1) return n

        let prev = 0
        let curr = 1

        for (let i = 2; i <= n; i++) {
            const next = prev + curr
            prev = curr
            curr = next
        }

        return curr
    },
    { data: 10 }
).timeout(15_000) // optionally timeout the request

Dual Operating Threads

A slightly more involved example that spawns a worker, exchanges messages, and finally shuts everything down.

function createWorker() {
    const scope = (ctx: WorkerContext) => {
        // Let the main thread know we're ready
        ctx.post({ type: 'ready', id: ctx.id })

        // Main thread seing if we're sill here
        ctx.onMessage((msg: any) => {
            if (msg.type === 'ping') ctx.post({
                type: 'pong',
                n: msg.n,
                from: ctx.id
            })
        })

        // doing some work in the background
        setInterval(() => process.stdout.write('.'), 250)
    }

    return Multithreaded.addWorker(randomUUID(), scope)
}

// --------------------------------------------------------

Multithreaded.main(() => {
    const w1 = createWorker()

    // Log all that our worker sends to us
    w1.onMessage((message) => console.log(message))

    // Let's send a job to our worker...
    w1.post({ type: 'ping', n: 1 })

    // Force-quit threads with terminateWorkers():
    // (Gracefully quit by sending a "shutdown" message)
    setTimeout(() => Multithreaded.terminateWorkers(), 1500)
})

See the API doc for a brief overview of functions and types.
For more examples and recipes, have a look through the example docs.
To report an issue or suggest a feature, visit the GitHub repo.