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

@unchainedshop/core-worker

v4.6.2

Published

Background job and task queue module for the Unchained Engine

Readme

npm version License: EUPL-1.2

@unchainedshop/core-worker

Background job queue module for the Unchained Engine. Provides a work queue system for async task processing with plugin-based workers.

Installation

npm install @unchainedshop/core-worker

Usage

import { configureWorkerModule, WorkStatus } from '@unchainedshop/core-worker';

const workerModule = await configureWorkerModule({ db });

// Add a work item to the queue
const workId = await workerModule.addWork({
  type: 'SEND_EMAIL',
  input: {
    to: '[email protected]',
    template: 'order-confirmation',
  },
});

// Find pending work
const pendingWork = await workerModule.findWork({
  status: WorkStatus.NEW,
});

// Process work (typically done by worker plugins)
await workerModule.processWork(workId, {
  success: true,
  result: { messageId: 'abc123' },
});

API Overview

Module Configuration

| Export | Description | |--------|-------------| | configureWorkerModule | Configure and return the worker module |

Queries

| Method | Description | |--------|-------------| | findWork | Find work item by ID | | findWorkQueue | Find work items with filtering | | count | Count work items matching query |

Mutations

| Method | Description | |--------|-------------| | addWork | Add work item to queue | | allocateWork | Allocate work to a worker | | processWork | Mark work as processed | | rescheduleWork | Reschedule failed work | | deleteWork | Delete a work item |

Constants

| Export | Description | |--------|-------------| | WorkStatus | Status values (NEW, ALLOCATED, SUCCESS, FAILED, DELETED) |

Types

| Export | Description | |--------|-------------| | Work | Work item document type | | WorkerModule | Module interface type |

Work Types

Work types are linked to worker plugins. Common built-in types:

| Type | Description | |------|-------------| | SEND_EMAIL | Send email notifications | | HEARTBEAT | Keep-alive jobs | | EXTERNAL | External service calls |

Worker Plugins

Workers process jobs by type. The plugin is responsible for:

  • Handling retries on failure
  • Processing the work input
  • Returning success/failure results

Events

| Event | Description | |-------|-------------| | WORK_ADDED | Work item added to queue | | WORK_ALLOCATED | Work allocated to worker | | WORK_FINISHED | Work processing completed | | WORK_FAILED | Work processing failed |

License

EUPL-1.2