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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ast-alchemy

v0.1.0

Published

dark magic that allows libraries to process caller ASTs

Readme

ast-alchemy - Expression Trees for TypeScript

Dark magic that allows libraries to process caller ASTs

Warning ⚠️: This library is not stable and has no ordinary utility. It is intended to be used in a very specific, small set of TypeScript libraries, and it is sensitive to small changes in environment. Use at your own peril.

import alchemy, { ts } from "ast-alchemy";

/**
 * Prints the body of its argument.
 */
export async function printFunctionBody(_h: () => void) {
  // Get the AST of the value that was passed in for `h`
  const {
    sourceFile,
    expr: {
      // Destructure the arguments of the call
      arguments: [ handlerAst ]
    }
  } = await alchemy();

  // Check to make sure the argument had the syntactic shape we expect
  if (!ts.isArrowFunction(handler) || !ts.isBlock(handler.body)) {
    throw new Error("Expected an arrow function with a block body!");
  }

  const { body } = handler;

  console.log("Argument body:");

  for (const statement of body.statements) {
    console.log(">", statement.getText(sourceFile));
  }
}

About

This little library was inspired by C# Expression Trees. Being able to recover the syntactic form of an argument allows libraries to do a variety of funky (and powerful) transformations on that AST. In general, it is useful for codegen.

Originally, I envisioned this library as a mechanism for building DSLs that are embedded into TypeScript that have a code component (e.g. a Parser Generator), where the DSL would be used to generate some compiler output that would contain the code the user originally wrote into the DSL program.

So, if a user writes the following code:

import { printFunctionBody } from "my-library";

await printFunctionBody(() => {
  console.log("Hello world!");
});

The printFunctionBody function can access the exact syntactic form of its function argument, and (in the example above), print it. It can do any kind of processing/manipulation of this function that it could do on any other kind of data.

However, the technical mechanisms available in TypeScript lead to this library having some serious technical limitations (explained below). I nonetheless decided to publish it.

Alternatives that you should consider instead

  • Not doing this thing in the first place
    • If you're here you might have already considered this
  • Function.toString
    • If you only need to analyze/transpile the behavior of a function, the JavaScript source will do, but ast-alchemy can provide the strongly-typed original TypeScript AST.
    • Function.toString won't force you to require your users to pass literals to your API, whereas ast-alchemy is sensitive to the exact syntactic form that was typed into the argument position of the call.
  • Writing a proper compiler/preprocessor

Limitations

There are many limitations of the current implementation, almost all of which revolve around source code.

  1. The original source code MUST be available on disk. This library does not support inline source maps, and it opens and reads the source file during execution.
  2. If compiling TypeScript code, source map support MUST be enabled in the caller.
  3. Consumers SHOULD use the same version of TypeScript that the Alchemy library uses, to ensure compatibility (ast-alchemy exports its copy of the TypeScript API as ts for library authors' use).

For reasons 1 & 2, it is recommended that scripts that are the ultimate consumers of ast-alchmey (e.g. DSL files) are invoked using ts-node, as it will automatically handle both concerns.

How it works

The code for this library is surprisingly simple, if a bit finnicky and subject to breakage. The basic process for recovering the caller's AST from a library function is:

  1. Create an Error instance and retrieve a stack trace.
  2. Crawl the stack trace until the first library caller (calculated using a depth parameter that defaults to 3) is reached.
  3. Use the stack trace to determine the position of the call in the source file.
  4. Read the source file on disk into memory (thus, the limitations in the section above)
  5. Create an instance of the TypeScript lexer/parser and begin parsing from the position of the call until a full expression is parsed.
  6. Return the expression.

License

This project is licensed for use under the MIT license.

Copyright 2020 Will Temple

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.