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

@ctrl/sabnzbd

v1.0.0

Published

TypeScript api wrapper for SABnzbd using ofetch

Downloads

22

Readme

SABnzbd

TypeScript api wrapper for SABnzbd using ofetch

Overview

Includes the normalized usenet API shared with @ctrl/nzbget:

Use the normalized methods by default. Drop to the native SABnzbd methods only when you need SAB-specific behavior such as script changes, post-process changes, rename operations, or raw queue/history responses.

Install

npm install @ctrl/sabnzbd

Use

import { Sabnzbd } from '@ctrl/sabnzbd';

const client = new Sabnzbd({
  baseUrl: 'http://localhost:8080/',
  apiKey: 'api-key',
});

async function main() {
  const data = await client.getAllData();
  console.log(data.queue);
}

Normalized Example

import { Sabnzbd, UsenetNotFoundError, UsenetPriority } from '@ctrl/sabnzbd';

const client = new Sabnzbd({
  baseUrl: 'http://localhost:8080/',
  apiKey: 'api-key',
});

async function main() {
  const id = await client.addNzbUrl('https://example.test/release.nzb', {
    category: 'movies',
    priority: UsenetPriority.high,
    startPaused: false,
  });

  try {
    const job = await client.getQueueJob(id);
    console.log(job.state, job.progress);
  } catch (error) {
    if (error instanceof UsenetNotFoundError) {
      console.log('job missing', error.id);
    }
  }
}

API

Docs: https://sabnzbd.ep.workers.dev
SABnzbd API Docs: https://sabnzbd.org/wiki/configuration/4.5/api

Normalized Methods

getAllData()

Returns queue, history, categories, scripts, and status in normalized form. This is the broadest normalized read and fits best when you want an overview in one call.

getQueue()

Returns normalized active queue items.

getHistory()

Returns normalized history items.

getQueueJob(id)

Returns one normalized active queue item. Missing ids throw UsenetNotFoundError.

getHistoryJob(id)

Returns one normalized history item. Missing ids throw UsenetNotFoundError.

findJob(id)

Searches queue first, then history, and returns { source, job } or null. It is the convenient path when you do not know which side the id should be on.

addNzbFile(...) / addNzbUrl(...)

Add an NZB and return the normalized queue id as a string. These are the lighter add helpers when an id is enough. The normalized add option names are category, priority, postProcess, postProcessScript, name, password, and startPaused.

normalizedAddNzb(...)

Add an NZB from either a URL or file content and return the created normalized queue item. This is the higher-level add helper when you want the normalized job back immediately.

Normalized state labels

stateMessage uses the shared UsenetStateMessage vocabulary: Grabbing, Queued, Downloading, Paused, Post-processing, Completed, Failed, Warning, Deleted, and Unknown.

Native API

SABnzbd-specific methods are still available when you need the raw client surface.

Connection and discovery:

  • auth()
  • getVersion()
  • getFullStatus()
  • getWarnings()
  • clearWarnings()
  • getServerStats()
  • listQueue(query?)
  • listHistory(query?)
  • getCategories()
  • getScripts()
  • getFiles(id)

Queue and job mutation:

  • deleteJob(id, deleteFiles?)
  • shutdown()
  • restart()
  • restartRepair()
  • pausePostProcessing()
  • resumePostProcessing()
  • fetchRss()
  • scanWatchedFolder()
  • resetQuota()
  • changeCategory(id, category)
  • changeScript(id, script)
  • changePriority(id, priority)
  • changePostProcess(id, postProcess)
  • renameJob(id, name, password?)
  • setSpeedLimit(limit)

Raw add methods:

  • addUrl(url, options?)
  • addFile(nzb, options?)
export and create from state
const state = client.exportState();
const restored = Sabnzbd.createFromState(config, state);

Local Integration Testing

Use a disposable SABnzbd instance on localhost:8080 with its config mounted at /tmp/sabnzbd-local-test.

docker run -d --name sabnzbd-local-test \
  -p 8080:8080 \
  -v /tmp/sabnzbd-local-test:/config \
  lscr.io/linuxserver/sabnzbd:latest

Wait for first-run setup to create sabnzbd.ini:

ls -l /tmp/sabnzbd-local-test/sabnzbd.ini

Read the generated API key:

docker exec sabnzbd-local-test sed -n 's/^api_key = //p' /config/sabnzbd.ini

Run only the integration spec:

TEST_SABNZBD_URL=http://127.0.0.1:8080 \
TEST_SABNZBD_API_KEY=$(docker exec sabnzbd-local-test sed -n 's/^api_key = //p' /config/sabnzbd.ini) \
pnpm test test/integration.spec.ts

Run the full test suite:

TEST_SABNZBD_URL=http://127.0.0.1:8080 \
TEST_SABNZBD_API_KEY=$(docker exec sabnzbd-local-test sed -n 's/^api_key = //p' /config/sabnzbd.ini) \
pnpm test

The integration spec in test/integration.spec.ts defaults to this exact setup:

  • baseUrl defaults to http://127.0.0.1:8080
  • apiKey is read from /tmp/sabnzbd-local-test/sabnzbd.ini if TEST_SABNZBD_API_KEY is unset