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

tfjs-native

v0.0.1

Published

TensorFlow (C++/Python) native wrapper for Node.js — full op-registry coverage via the libtensorflow C API.

Downloads

345

Readme

tfjs-native

English | 日本語

CI npm node platform license

TensorFlow (C++/Python) native wrapper for Node.js.

@tensorflow/tfjs maps only ~300 of TensorFlow's ops; the original op registry has 1,400+. tfjs-native binds TensorFlow's C API (the native library @tensorflow/tfjs-node also uses) to expose the full op registry to typed TypeScript, plus SavedModel execution and a thin training layer.

Original: tensorflow/tensorflow

Requirements

  • Node.js 22+, on Windows / Linux / macOS.
  • Prebuilt addons ship for linux-x64, darwin-x64, and win32-x64; other platforms build from source (needs Python and a C++ toolchain).
  • libtensorflow (the C library) is fetched automatically on install — no manual setup on supported platforms.

Install

npm install tfjs-native
# or: bun add tfjs-native

The matching libtensorflow build downloads on install.

  • Allow the install script. Some package managers skip a dependency's install script by default, which skips the download. Allow it for tfjs-native, or set LIBTENSORFLOW_ROOT to an existing install:
    • Bun: add "tfjs-native" to trustedDependencies.
    • pnpm: add "tfjs-native" to pnpm.onlyBuiltDependencies.
    • npm: runs it today, but is expected to require opt-in in a future release.
  • macOS (Apple Silicon): no official arm64 build — brew install libtensorflow, then set LIBTENSORFLOW_ROOT.
  • Use a mirror with TFJS_NATIVE_CDN_STORAGE=https://your-mirror/.

Usage

import { tensor, zeros, tidy, version } from "tfjs-native";

console.log(version()); // linked libtensorflow version

const a = tensor([
  [1, 2, 3],
  [4, 5, 6],
]);
console.log(a.shape); // [2, 3]
console.log(await a.array()); // [[1, 2, 3], [4, 5, 6]]

// int64 is first-class (read back as BigInt), unlike tfjs, which stops at int32.
const ids = tensor([1, 2, 3], [3], "int64");

// Scope-based memory management.
const result = tidy(() => {
  const z = zeros([2, 2]); // disposed at scope exit
  return tensor([1, 1]); // kept
});

a.dispose();

How it works

TypeScript API  ->  N-API addon (node-addon-api)  ->  libtensorflow C API

The addon links a pinned libtensorflow (currently 2.10.0), is compiled per platform, and ships as a prebuilt binary via node-gyp-build.

Documentation

  • Status — what works today, by milestone.
  • Functions & features — the current API and the roadmap.
  • Design — architecture, scope, and the native contract.
  • Contributing — dev environment (Bun, Python via uv, C++ toolchain) and workflow.

Author

otoneko. https://github.com/otnc

License

Apache 2.0.