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

@typesugar/transformer-core

v0.1.1

Published

🧊 Browser-compatible transformer core for typesugar macro expansion

Readme

@typesugar/transformer-core

Browser-compatible transformation core for typesugar macro expansion.

Overview

This package provides the core macro transformation logic with zero Node.js dependencies. It can run in any JavaScript environment: browsers, Node.js, Deno, Bun, Web Workers, etc.

The main @typesugar/transformer package depends on this for the actual transformation logic, while adding Node.js-specific features like file caching, macro package loading, and ts-patch integration.

@typesugar/transformer-core    ← Pure transformation (this package)
          ↑
@typesugar/transformer         ← Node.js plugin (ts-patch, caching, CLI)
@typesugar/playground          ← Browser bundle (interactive playground)

Installation

pnpm add @typesugar/transformer-core

Usage

Basic Usage

import { transformCode } from "@typesugar/transformer-core";
import "@typesugar/macros"; // Register built-in macros

const result = transformCode(`
  import { staticAssert } from "@typesugar/macros";
  staticAssert<true>();
`);

console.log(result.code); // Transformed code
console.log(result.changed); // true if any macros were expanded
console.log(result.diagnostics); // Any errors or warnings

With Options

const result = transformCode(code, {
  fileName: "my-file.ts", // For diagnostics and source maps
  verbose: true, // Log macro expansions
  trackExpansions: true, // Include expansion records in result
  compilerOptions: {
    // Custom TypeScript options
    strict: true,
  },
});

Using MacroTransformer Directly

For advanced use cases, you can use MacroTransformer directly:

import * as ts from "typescript";
import { MacroTransformer } from "@typesugar/transformer-core";
import { MacroContextImpl, HygieneContext } from "@typesugar/core";

const transformer = new MacroTransformer(ctx, verbose, expansionTracker);
const result = ts.visitNode(sourceFile, transformer.visit.bind(transformer));

API

transformCode(code, options?)

Transform TypeScript/JavaScript code with macro expansion.

Parameters:

  • code: string — Source code to transform
  • options?: TransformCodeOptions — Optional configuration

Returns: TransformCodeResult

interface TransformCodeResult {
  original: string; // Original source code
  code: string; // Transformed code
  sourceMap: RawSourceMap | null; // Source map for debugging
  mapper: PositionMapper; // Map positions between original/transformed
  changed: boolean; // Whether any macros were expanded
  diagnostics: TransformDiagnostic[]; // Errors and warnings
  expansions?: ExpansionRecord[]; // If trackExpansions enabled
}

MacroTransformer

The core transformation visitor class. Handles all macro types:

  • Expression macros (staticAssert(), comptime(), pipe())
  • Attribute macros (@tailrec, @derive)
  • JSDoc macros (@typeclass, @impl, @derive)
  • Derive macros (trait generation)
  • Tagged template macros

Source Map Utilities

import {
  composeSourceMaps,
  decodeSourceMap,
  findOriginalPosition,
  findGeneratedPosition,
  createPositionMapper,
} from "@typesugar/transformer-core";

Browser Compatibility

This package has no Node.js dependencies:

  • ✅ No fs — in-memory file system
  • ✅ No path — path operations abstracted
  • ✅ No process — environment detection via feature checks
  • ✅ Tree-shakeable — unused code eliminated by bundlers

The package is used by @typesugar/playground to power the interactive playground on the documentation site.

License

MIT