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

@hyperfrontend/builder

v0.1.2

Published

Composable, vendor-neutral build toolkit for TypeScript libraries, JS bins, and Node SEA native binaries.

Downloads

443

Readme

@hyperfrontend/builder

Composable, vendor-neutral build toolkit for TypeScript libraries, JS bins, and Node SEA native binaries.

• 👉 See documentation

What is @hyperfrontend/builder?

@hyperfrontend/builder is a build-time Node.js toolkit that turns a TypeScript source tree into a publishable npm package. From a single declarative config it discovers entry points, resolves externals, bundles each entry in isolation, emits type declarations, synthesizes the output package.json, copies assets, and — optionally — produces JavaScript bins and standalone Node SEA native binaries.

It is vendor-neutral: nothing about a consumer's workspace (package naming, which deps are first-party, hoist policy) is hard-coded. You inject those opinions through predicates and config, so the same toolkit drives a leaf utility library and a multi-entry framework alike.

Key Features

  • Multi-format output — emit ESM, CJS, IIFE, and UMD bundles from one config; omit a format to skip it.
  • Bins & native binaries — synthesize JavaScript bins and cross-platform Node SEA native executables.
  • Per-entry isolation — each entry point bundles independently, keeping peak memory bounded on large graphs.
  • Predicate-driven extensibility — classify workspace packages, externals, and assets with plain functions instead of config DSLs.
  • Self-contained packages — bundle first-party and third-party dependencies, with an additive post-emit pass that dedups shared internals into _shared/ chunks.
  • Composable phases — run the bundle, package, and bin phases together via build, or drive each phase on its own.

Architecture Highlights

  • build orchestrates; phases compose. build(config) runs the full pipeline, while runBundlePhase, runPackagePhase, and runBinPhase remain individually callable against a shared BuildContext from createBuildContext.
  • Predicate extension model. Externals, workspace membership, and asset conditions are expressed as predicates (byNames, byPrefix, or your own), keeping the core free of workspace-specific assumptions.
  • Memory-aware by design. Per-entry bundling plus an opt-in memory monitor (createMemoryMonitor, recover) keep large builds inside constrained environments.

Why Use @hyperfrontend/builder?

Most library bundlers assume one entry point, one format, and a fixed notion of what is "external." @hyperfrontend/builder is built for monorepos that publish many packages with shared internals and varied output needs:

  • You need ESM and CJS and CDN-ready bundles from the same source.
  • You ship CLIs and want native binaries without standing up a separate SEA pipeline.
  • You want bundled, self-contained packages without forcing transitive installs on consumers.
  • You want to script the build programmatically — or hand it to the hf-build CLI — without adopting a heavyweight, opinionated framework.

Installation

npm install --save-dev @hyperfrontend/builder

typescript is a required peer dependency — the builder drives declaration emit through your project's TypeScript and is built against TypeScript >= 5.9. Install it alongside the builder if your project does not already depend on it:

npm install --save-dev "typescript@>=5.9"

Quick Start

Drive the full pipeline programmatically with build:

import { build, byPrefix } from '@hyperfrontend/builder'

const result = await build({
  projectRoot: '/abs/path/to/libs/my-lib',
  workspaceRoot: '/abs/path/to/workspace',
  // Treat sibling workspace packages as first-party (bundled), everything else external.
  isWorkspacePackage: byPrefix('@my-scope/'),
  esm: { bundleWorkspaceDeps: true },
  cjs: { bundleWorkspaceDeps: true },
})

console.log(result)

Or build straight from a JSON config with the bundled CLI:

# Reads ./builder.config.json by default
hf-build --config ./builder.config.json --verbose

Need finer control? Compose the phases yourself:

import { createBuildContext, runBundlePhase, runPackagePhase } from '@hyperfrontend/builder'

const ctx = createBuildContext(config)
await runBundlePhase(ctx, config)
await runPackagePhase(ctx, config, /* formats */ [])

API Overview

| Export | Description | | --------------------------------- | -------------------------------------------------------------------- | | build | Run the full pipeline (bundle → package → bin) from a BuildConfig. | | createBuildContext | Derive the shared BuildContext used by the individual phases. | | runBundlePhase | Emit per-entry bundles and declarations for the configured formats. | | runPackagePhase | Synthesize the output package.json, assets, and license file. | | runBinPhase | Synthesize JavaScript bins and Node SEA native binaries. | | createMemoryMonitor / recover | Observe build memory pressure and recover from soft limits. | | byNames / byPrefix | Preset predicate factories for classifying packages and externals. |

Advanced primitives are available under sub-path entries — for example @hyperfrontend/builder/presets, @hyperfrontend/builder/bundle, @hyperfrontend/builder/package, and @hyperfrontend/builder/bin. See the documentation for the full surface.

Compatibility

@hyperfrontend/builder is a build-time tool that runs on Node.js. It is not intended for browser, Web Worker, or CDN runtimes.

| Environment | Supported | | ----------------- | --------- | | Node.js >= 18 | ✅ | | npm >= 8 | ✅ | | TypeScript >= 5.9 | ✅ | | Browser | ❌ |

License

MIT