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

@ionify/ionify

v0.1.32

Published

Ionify — Instant, Intelligent, Unified Build Engine

Readme

⚡ Ionify

The build engine that doesn't start over.

One Graph. One CAS. One Authority.


Every layer of computing learned to stop redoing work it had already done — CPUs got caches, databases got indexes, compilers got incremental compilation. The build never learned it. Every run rediscovers your dependencies, re-transforms your modules, and rebuilds the same artifacts from zero.

Ionify is a build engine that remembers: a persistent dependency graph, a content-addressable store, and a single published authority over every dependency — shared by dev, build, and CI so they can never disagree.

Quick Start

pnpm add -D ionify

Create ionify.config.ts:

export default {
  entry: "/src/main.ts",
  outDir: "dist",
  productionArtifactPublishing: "auto",
};
pnpm ionify dev     # development server
pnpm ionify build   # production build

What Ionify Is

Ionify is not a faster bundler — it's a different category. It runs the entire lifecycle through one persistent engine: file watching, resolution, transformation, caching, and bundling. Because the engine owns the pipeline, it can persist what it learns:

  • One Graph — a long-lived dependency graph that survives restarts. The engine understands how your project evolves over time, not just how it builds once.
  • One CAS — a content-addressable store (.ionify/cas/versionHash/moduleHash/…). If content hasn't changed, its work is never done again. Deterministic, version-isolated, automatically invalidated by configuration hash.
  • One Authority — each dependency's export surface is published once as a content-hashed contract. The dev server, the production bundler, and federation all consume the same contract. There is a single, enforced answer to "what does this dependency expose" — so dev and production cannot quietly drift.

That last part kills a whole class of bugs by construction, not by detection: "works in dev, breaks in build", duplicate singletons, phantom exports — they're all the same disease (no single source of truth about a dependency), and they become structurally impossible when the truth has one owner.

Architecture

Source Files
    ↓
  Resolver
    ↓
Persistent Dependency Graph (native)
    ↓
Transform Engine (OXC)
    ↓
Content-Addressable Store (.ionify/cas/versionHash/moduleHash/...)
    ↓
Dev Server / Bundler

Hybrid Transformation Engine

Ionify uses a hybrid transformation strategy by design: OXC as the primary engine for parsing and transformation (performance, modern syntax), with SWC as a fallback layer for robustness across edge cases and evolving ecosystems. This keeps the engine framework-agnostic while balancing speed, correctness, and long-term maintainability.

Storage

  • Graph persistence — native Rust implementation
  • Transformed outputs — stored in version-isolated CAS
  • Automatic invalidation — via configuration hash

Unified Dev + Production

Development and production share the same resolver, the same dependency semantics, the same transforms, and the same caching strategy. Unifying the pipeline eliminates the entire class of inconsistencies that appears when dev and build pipelines diverge.

Environment Modes

Ionify loads .env, .env.local, .env.<mode>, and .env.<mode>.local. Use --mode to select the app mode while keeping production build semantics:

pnpm ionify dev --mode staging
pnpm ionify build --mode staging

Config functions receive the selected mode and loaded env values:

import { defineConfig } from "ionify";

export default defineConfig(({ mode, env }) => ({
  cloud: {
    apiUrl: env.IONIFY_CLOUD_API_URL,
    namespace: mode,
  },
}));

Project Status

| Capability | Status | | --------------------------------------| -------------- | | Persistent Graph | ✅ Stable | | Content Addressable Storage | ✅ Stable | | Native Dependency Resolver | ✅ Stable | | Unified Dev + Build Pipeline | ✅ Stable | | Dependency Publication Layer (DPL) | ✅ Stable | | One Dependency Authority (ODA) | ✅ Stable | | Production Artifact Publishing (PAP) | ✅ Stable | | One CSS Authority (CSSA) | ✅ Stable | | Federation Foundation | ✅ Stable | | Workspace Engine | ✅ Stable | | Ionify Analyze | ✅ Stable | | Cloud CAS | 🚧 In Progress |

What's New

  • CSSA: the one CSS authority shared by dev, build, worker execution, CAS, and CSS artifact restore.

Links

Website: https://ionify.cloud GitHub: https://github.com/ionifyjs/ionify Issues: https://github.com/ionifyjs/ionify/issues Contact: [email protected]

License

MIT © Khaled Salem