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

nbis-wrapper-js

v0.3.0

Published

Node.js wrappers for NBIS 5.0.0 binaries

Readme

nbis-wrapper-js

Node.js wrappers for NBIS 5.0.0 binaries.

This package bundles NBIS binaries and runtime data for macOS arm64 and exposes them as TypeScript-friendly classes.

Install

npm install nbis-wrapper-js

Platform Support

  • macOS (darwin) arm64
  • Linux x86_64

Usage

import { Mindtct, Bozorth3, Nfiq } from 'nbis-wrapper-js';

const mindtct = new Mindtct();
const bozorth3 = new Bozorth3();
const nfiq = new Nfiq();

// Minutiae extraction
mindtct.detect('sample.wsq', 'out/sample', { enhanceLowContrast: true });

// Match two xyt files
const match = bozorth3.matchPair('out/a.xyt', 'out/b.xyt', { m1: false });
console.log(match.results);

// Quality score
const score = nfiq.score('sample.wsq');
console.log(score.scores);

Stream IO (optional)

For file-based commands, async *Stream methods accept a stream or buffer and use temporary files under the hood. Outputs can be returned as a buffer or piped to a stream.

Most wrappers that take file paths now have *Stream counterparts. Commands with multiple outputs (e.g., mindtct) return an outputBuffers map unless you provide per-output streams. mindtct.detectStream only returns buffers when outputToBuffer is set.

Stream inputs also accept inputName/inputExtension (for tools that infer format from filenames). For Bozorth3, you can pass { input, label } to keep stable probe/gallery identifiers in results.

Image Auto-Convert (default on)

Mindtct and Nfiq can auto-convert PNG/JPEG inputs into WSQ before invoking NBIS. This is enabled by default and can be disabled via the constructor.

import { Mindtct } from 'nbis-wrapper-js';

const mindtct = new Mindtct({ autoConvert: false });

// Or tune WSQ conversion:
const tuned = new Mindtct({
  autoConvert: {
    wsqBitrate: 0.75,
    ppi: 500,
    upscale: { enabled: true, minSize: 256 }
  }
});
import fs from 'fs';
import { Cwsq } from 'nbis-wrapper-js';

const cwsq = new Cwsq();
const inputStream = fs.createReadStream('sample.raw');

const result = await cwsq.compressStream(0.75, 'wsq', inputStream, {
  rawIn: { width: 500, height: 500, depth: 8 },
  output: fs.createWriteStream('out.wsq')
});

// Or return a buffer instead of piping:
const { outputBuffer } = await cwsq.compressStream(0.75, 'wsq', inputStream, {
  rawIn: { width: 500, height: 500, depth: 8 },
  outputToBuffer: true
});

API Overview

Fingerprint

  • Mindtct
    • version()
    • detect(fingerImagePath, outputRoot, options)
  • Bozorth3
    • version()
    • matchPair(...)
    • matchMatesList(...)
    • matchProbeList(...)
    • matchGalleryList(...)
    • matchWithFixedProbe(...)
    • matchWithFixedProbeList(...)
    • matchWithFixedGallery(...)
    • matchWithFixedGalleryList(...)
  • Nfiq
    • version()
    • score(imagePath, options)

WSQ

  • Cwsq / Dwsq
  • Rdwsqcom / Wrwsqcom

JPEG/JPEG2000

  • Cjpeg / Djpeg
  • Cjpegb / Djpegb
  • Cjpegl / Djpegl
  • Jpegtran
  • Cjp2k / Djp2k
  • Rdjpgcom / Wrjpgcom

Color/Interleave Helpers

  • Rgb2ycc / Ycc2rgb
  • Intr2not / Not2intr

ANSI/NIST Tools

  • An2kTool
  • Chkan2k
  • Datainfo

Notes

  • Binaries are invoked directly; NBIS runtime data is bundled and set via NBIS.
  • Some IJG/OpenJPEG tools do not exit with -version cleanly; the wrapper returns their help output for version().

Development

npm install
npm run build
npm run test

License

Unlicense (see package.json).