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

@itxtech/fdnext-core

v3.0.0

Published

Core fdnext memory chip parsing engine, rules, resources, runtime, CLI, and result contracts

Readme

@itxtech/fdnext-core

Core parsing engine for fdnext — the one-stop memory chip intelligence platform.

Overview

@itxtech/fdnext-core is the primary fdnext package. It provides the engine, built-in DecodePack rules, embedded resources, shared runtime, CLI, type system, result contracts, and field registry. The core has no runtime network dependencies, making it suitable for embedding in Node.js, browsers, and serverless environments.

Key Responsibilities

  • EnginecreateEngine() initializes the decoding and search pipeline, wiring together decoders, resources, and processors.
  • DecodePack Rules — Built-in PN / typed identifier JSON rules plus compiler, check, and explain tools.
  • Embedded Resources — Built-in FDB, MDB, controller groups, language packs, and PN suggestion indexes.
  • Part Number Decoding — Decode raw NAND, eMMC, UFS, DRAM, eMCP/uMCP, and other memory chip part numbers into structured results.
  • Typed Identifier Decoding — Deep inspection of NAND Flash IDs through a typed identifier API.
  • FDB / MDB Search — Database search against embedded Flash Database (FDB) and Marking Database (MDB) resources.
  • Result Contract — Typed result schema (fdnext.result.v1) and capabilities schema (fdnext.capabilities.v2) with JSON Schema export.
  • Field Registry — Canonical field key definitions (field-registry.ts) and field display profiles for consistent cross-vendor output.
  • Processor Pipeline — Extensible beforeOperation / afterOperation hooks for custom middleware.
  • RuntimecreateRuntime() provides shared dispatch, HTTP routing, CORS, fetch, and External Link provider support.
  • CLI — The fdnext bin provides decode, search, capabilities, and DecodePack diagnostics.

Installation

pnpm add @itxtech/fdnext-core

The package also installs the fdnext command:

fdnext part decode MT29F64G08CBABA eng
fdnext decodepack check

Quick Start

import { createEngine } from "@itxtech/fdnext-core";
const engine = createEngine();

// Decode a part number
console.log(engine.decodePart({ query: "MT29F64G08CBABA", lang: "eng" }));

// Decode a NAND Flash ID
console.log(engine.decodeIdentifier({ query: "2C64444BA900", lang: "eng" }));

// Search parts
console.log(engine.searchParts({ query: "MT29", lang: "eng", limit: 10 }));

Exports

| Export Path | Description | | :--- | :--- | | @itxtech/fdnext-core | Main entry — createEngine, operation input/result types, capabilities, and JSON schemas | | @itxtech/fdnext-core/runtime | Runtime entry — createRuntime, HTTP dispatch/fetch helpers, CORS options, and External Link provider types | | @itxtech/fdnext-core/decodepack | DecodePack maintenance entry — compiler, checker, explain tools, default pack, and NAND die profile tables |

Browser integrations that run fdnext locally should use the main createEngine() entry. The runtime entry is for HTTP adapters, and the decodepack entry is for rule maintenance tooling.

SDK Methods

| Method | Description | | :--- | :--- | | engine.decodePart(input) | Decode a single part number | | engine.searchParts(input) | Search part numbers, returns a ranked list | | engine.decodeIdentifier(input) | Decode a typed identifier (e.g. NAND Flash ID) | | engine.searchIdentifiers(input) | Search typed identifiers | | engine.getCapabilities(input?) | Query server/engine capabilities, resource inventory, and decoder list |

Documentation

License

AGPL-3.0-or-later — See LICENSE for details.