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

@nubjs/loader

v0.9.1

Published

Standalone TypeScript loader for Node.js from the Nub project — TypeScript, JSX, tsconfig paths, and data-format imports through a native transform, registered the way tsx and ts-node are

Readme

@nubjs/loader

Standalone TypeScript loader for Node.js, from the Nub project. Register it the way tsx or ts-node is registered, and TypeScript works in import, in require(), and in worker threads — powered by the same native oxc-based transform the Nub CLI uses.

npm install --save-dev @nubjs/loader
node --import @nubjs/loader app.ts

Any way Node accepts a preload works:

node --import @nubjs/loader app.ts          # one run
NODE_OPTIONS="--import @nubjs/loader" vitest # tools that spawn node themselves
node --require @nubjs/loader app.ts          # CommonJS delivery (see below)

What it does

  • Transpiles .ts / .tsx / .mts / .cts / .jsx on the fly — full TypeScript, including enums, namespaces, and legacy decorators, not just type stripping.
  • Resolves TypeScript conventions: tsconfig paths and baseUrl, extensionless imports, the .js.ts emit-convention swap, directory index files.
  • Augments CommonJS require() with the same resolution and transpile, not only import.
  • Loads data formats as modules: .yaml, .toml, .json5, .jsonc, .txt, and with { type: "text" } imports.
  • Lowers using / await using and other syntax newer than the running Node.
  • Inline source maps, on for every transpiled file.
  • Applies inside worker threads automatically (Node inherits the preload).

Dependencies under node_modules are never transpiled, and files Node handles natively load byte-for-byte unchanged — the loader adds behavior, it does not modify Node's.

Entry points

node --import @nubjs/loader app.ts        # ESM hooks + CommonJS require() augmentation
node --require @nubjs/loader app.ts       # same, delivered as a CommonJS preload (Node 20.19+)
node --import @nubjs/loader/esm app.ts    # ESM hooks only

Module formats follow Node's own rules: a .cts file is CommonJS and a .mts file is an ES module, and the loader transpiles types and syntax without converting one format into the other.

Node support

Node 18.19 and newer. On Node 22.15+ hooks register synchronously in-thread (module.registerHooks); older versions run them in Node's loader worker (module.register). The --require delivery needs require(esm) (Node 20.19+ / 22.12+); below that use --import.

Relationship to the Nub CLI

The @nubjs/nub CLI is a complete TypeScript-first toolchain — runner, package manager, Node version management — and does everything this loader does without any flags. This package is the loader alone, for cases where the node invocation itself is fixed: existing tooling, test runners, other CLIs that spawn node.

Platform binaries ship as optionalDependencies (@nubjs/loader-*) for macOS, Linux (glibc and musl), and Windows, on x64 and arm64.