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

@lyku/para-transpile

v0.0.1-pre.1

Published

Standalone transpiler for Para (.pts) — turns Para source into standard JavaScript. The JS-side mirror of the canonical ParaBun parser; parity-gated against a pinned parabun release (see /raid/para-design/para-parabun-boundary.md). Pre-release (0.0.x-pre)

Readme

@para/transpile

Standalone transpiler for Para — turns .pts source into standard JavaScript that imports from the matching @para/* npm packages. No Parabun runtime required at build time.

The canonical Para transpiler lives inside the Parabun fork of Bun (Zig). This package is a TypeScript reimplementation, intended for projects that don't (or can't) install Parabun on their build host: browsers, Lambda, Cloudflare Workers, Deno, Node, the Para playground.

Status — IN DEVELOPMENT, not yet released

package.json is private: true and version 0.0.0-dev. We don't ship a partial transpiler — the npm publish gate stays closed until every Para desugaring listed below works end-to-end and matches the canonical Zig parser's output.

| Feature | Status | | --- | --- | | ..! / ..& (catch / finally chain operators) | ✅ | | \|> pipeline operator | ✅ | | .. / ..= ranges | ✅ | | pure keyword strip | ✅ | | signal NAME = EXPR; declaration | ✅ | | effect { … } block | ✅ | | when EXPR { … } / paired form | ✅ | | ~> / -> reactive bindings | ✅ | | defer / defer await | ✅ | | memo declarator | ✅ | | arena { … } block | ✅ | | bare-read sugar (xx.get()) | ✅ | | signal x = expr-with-signals auto-promotes to derived | ✅ | | Parity test against canonical Zig parser output | ✅ (12/12 fixtures byte-equivalent after normalization) | | bun:wrap import injection for runtime helpers | ✅ | | using / await using polyfill (ES2022 target) | ✅ |

using polyfill

defer EXPR; and defer await EXPR; lower to ES2024 using / await using declarations, then a final pass rewrites those into a TS-style try/catch/finally block with __addDisposableResource and __disposeResources calls. The helper definitions are inlined at the top of any file that needs them, keeping the output self-contained without requiring a runtime import. Final output runs on Node 18 / 20 and every modern browser without requiring an additional downlevel pass from the host bundler.

Install

npm install @para/transpile
# Plus the @para/* runtime packages your code uses, e.g.:
npm install @lyku/para-signals @para/parallel @para/pipeline

Use

import { transpile } from "@para/transpile";

const js = transpile(`
  const handler = err => console.error(err);
  const result = fetch("/api").then(r => r.json()) ..! handler;
`);

// js is standard ES2022:
//   const handler = err => console.error(err);
//   const result = fetch("/api").then(r => r.json()).catch(handler);

CLI

para transpile src/main.pts > dist/main.js
para transpile < src/main.pts > dist/main.js

License

MIT