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

cpu-embeddings

v1.2.2

Published

embeddings generated on CPU for lightweight classification tasks

Readme

cpu-embeddings

Embeddings generated on CPU for lightweight classification tasks using the Xenova Transformers library.

Features

  • CPU-based: Runs entirely on CPU without requiring GPU acceleration.
  • Embedded Model: Includes a pre-trained quantized ONNX model (all-MiniLM-L6-v2) bundled with the package for convenience.
  • Lightweight: Optimized for small-scale classification tasks.
  • TypeScript Support: Fully typed for better development experience.

Installation

npm install cpu-embeddings

API Reference

EmbeddingsOptions

Interface for embedding options.

  • modelName?: string - Model name (default: "Xenova/all-MiniLM-L6-v2")
  • modelPath?: string - Local model path (default: "models")
  • numThreads?: number - Number of threads for ONNX (default: 1)

embeddings(text: string | string[], opts?: EmbeddingsOptions): Promise<number[]>

Generates embeddings for the given text(s).

  • Parameters:
    • text: A single string or an array of strings to embed
    • opts: Optional embedding options
  • Returns: A promise that resolves to an array of numbers representing the embeddings. For a single string, returns 384 numbers. For an array of n strings, returns 384 * n numbers.

Implementation Details

Uses the Xenova Transformers library to run transformer models in Node.js without Python. Runs on CPU with ONNX Runtime WebAssembly, using a quantized all-MiniLM-L6-v2 model with mean pooling and L2 normalization. Model files are bundled for offline use.

Useful Commands

Development

# Install dependencies
npm install

# Run tests
npm test

# Build the library
npm run build

# Format code
npm run format

# Start development server
npm run dev

Release

# Patch release
npm run release:patch

# Minor release
npm run release:minor

# Major release
npm run release:major

License

MIT