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

@pehotin/trans

v1.0.24

Published

**Trans** is a small JavaScript transpiler that takes modern JavaScript and downlevels it to older ECMAScript targets (like ES3/ES5) using an AST produced by Parker (@pehotin/parker). Created for a learning purpose mainly.

Downloads

174

Readme

@pehotin/trans

Trans is a small JavaScript transpiler that takes modern JavaScript and downlevels it to older ECMAScript targets (like ES3/ES5) using an AST produced by Parker (@pehotin/parker). Created for a learning purpose mainly.

It is designed to be used programmatically from Node.js and to be embedded into build tooling.

Installation

npm install @pehotin/trans

Quick start

Transpile a string of JavaScript and get the result back as a string:

const Trans = require('@pehotin/trans')

const source = `
const add = (a, b) => a + b
`

const output = Trans.pile(source, {
  target: 'es3',
  returnHelpers: true,
})

console.log(output)
console.log(Trans.getHelpers()) // helper chunks that were injected

Transpile a file and write the result to disk (similar to the included playground):

const Trans = require('@pehotin/trans')
const fs = require('node:fs')

const source = fs.readFileSync('./input.js', 'utf-8')

Trans.pile(source, {
  target: 'es3',
  output: './output.js',
  returnHelpers: true,
})

Playground

This repo contains a small playground that transpiles playground/test.js into playground/output.js.

npm install
npm run play

You can edit playground/test.js and re‑run the script to experiment with how different constructs are transformed.

API

  • Trans.pile(source, options)

    • source:
      • A JavaScript source string, or
      • An existing AST node with type === 'Program'.
    • options: configuration object (see Options below).
    • Returns: transpiled JavaScript as a string.
    • Side‑effects: if options.output is set, the transpiled code is also written to that path.
  • Trans.getHelpers()

    • Returns an array of helper chunks that were generated during the last pile call (only populated when returnHelpers: true is set in options).

Options

All options are optional; if omitted, defaults are used.

  • target: ECMAScript target version.

    • Type: string
    • Default: 'es3'
    • Allowed values: 'es3', 'es5', 'es6', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022'
  • output: path to a file where the transpiled code should be written.

    • Type: string
    • Default: empty string ('', meaning “do not write to disk”)
  • indentSpaces: number of spaces to use for indentation in generated code.

    • Type: number
    • Default: 2
  • returnHelpers: whether to collect and expose helper chunks via Trans.getHelpers().

    • Type: boolean
    • Default: false

Error handling

  • If source is not provided, Trans.pile throws an error.
  • If source is neither a string nor a Program AST node, Trans.pile throws an error.
  • Invalid option values (for example, an unsupported target or a non‑string output) are reported to the console.

License

MIT © Artem P