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

@background-tasks/react

v0.1.1

Published

React bindings for @background-tasks/core.

Downloads

213

Readme

@background-tasks/react

React bindings for @background-tasks/core.

This package is intentionally thin. It provides a provider and hooks for working with a BackgroundTaskManager, but it does not ship queue UI, dialogs, toasts, or styling. Applications keep full control over their own interface.

The package is in early development. Public APIs may change before the first stable release.

Install

npm install @background-tasks/core @background-tasks/react

@background-tasks/core and react are peer dependencies.

Setup

Create the manager with @background-tasks/core, then pass it to the provider.

import { BackgroundTaskManager, IndexedDbTaskStorage } from '@background-tasks/core';
import { BackgroundTaskProvider } from '@background-tasks/react';

const manager = new BackgroundTaskManager<AppTasks>({
  ownerKey: 'user-123',
  namespace: 'my-app',
  definitions,
  storage: new IndexedDbTaskStorage<AppTasks>({
    databaseName: 'my-app-background-tasks',
  }),
});

export function App() {
  return (
    <BackgroundTaskProvider manager={manager} autoStart>
      <TaskQueue />
    </BackgroundTaskProvider>
  );
}

autoStart starts the manager when the provider mounts. By default, stopOnUnmount follows autoStart, so an auto-started manager is stopped when the provider unmounts.

Hooks

useBackgroundTaskManager<TTasks>()

Returns the manager from React context.

const manager = useBackgroundTaskManager<AppTasks>();

The hook throws when used outside BackgroundTaskProvider.

useBackgroundTaskSnapshot<TTasks>()

Subscribes to manager events and returns the current snapshot.

const snapshot = useBackgroundTaskSnapshot<AppTasks>();

console.log(snapshot.status);
console.log(snapshot.counts.running);
console.log(snapshot.tasks);

Use this when a component needs the manager status, task counts, and task list.

useBackgroundTasks<TTasks>()

Returns only the task list from the current snapshot.

const tasks = useBackgroundTasks<AppTasks>();

Use this for simple queue rendering.

useBackgroundTask<TTasks>(id, type?)

Returns a single task by id. Passing type narrows the task type.

const task = useBackgroundTask<AppTasks, AppTaskType.GenerateReport>(
  taskId,
  AppTaskType.GenerateReport,
);

Use this for task detail screens or row-level components.

useBackgroundTaskActions<TTasks>()

Returns stable wrappers around manager actions.

const {
  enqueue,
  pause,
  resume,
  cancel,
  clearStorage,
  start,
  stop,
} = useBackgroundTaskActions<AppTasks>();

await enqueue({
  type: AppTaskType.GenerateReport,
  payload: {
    reportId: 'report-42',
  },
});

Example

The repository includes a React playground under packages/react/example.

npm install
npm run dev:example

The example shows typed task definitions, editable manager settings, editable task payloads, polling, retries, pause/resume, cancellation, deduplication, and browser coordination.

Development

npx nx build react
npx nx test react --run
npx nx lint react

License

MIT