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 🙏

© 2024 – Pkg Stats / Ryan Hefner

metascript

v1.0.0

Published

Sophisticated meta programming in JavaScript, e.g. to build different versions of a library from a single source tree.

Downloads

2,481

Readme

MetaScript

Metaprogramming is the writing of computer programs that write or manipulate other programs (or themselves) as their data, or that do part of the work at compile time that would otherwise be done at runtime.

MetaScript is a tool for build time meta programming using JavaScript as the meta language. Written between the lines it enables developers to transform sources in pretty much every way possible.

Donate

How does it work?

If you already know JavaScript, adding some meta is as simple as remembering that:

  • //? begins a line of meta.
  • /*? begins a block of meta and */ ends it.
  • //?... begins a snippet of meta and //?. ends it.
  • ?= writes the expression's raw result to the document.
  • ?== writes the expression's typed result to the document (runs it through JSON.stringify).

MetaScript then turns the meta inside out, making it the actual program, that outputs the contents in between.

A simple example

Let's assume that you have a library and that you want its version number to be included as the constant MyLibrary.VERSION. With meta, this is as simple as:

MyLibrary.VERSION = /*?== VERSION */;
// or, alternatively, if VERSION is always string-safe:
MyLibrary.VERSION = "/*?= VERSION */";

This is what the meta program, when compiled, will look like:

  write('MyLibrary.VERSION = ');
write(JSON.stringify(VERSION));
  write(';\n');

Accordingly, a transformation of the source done by running that exact meta program with a scope of { VERSION: "1.0" } will result in:

MyLibrary.VERSION = "1.0";

It's just that simple and everything else is, of course, up to your imagination.

Advanced examples

Of course it's possible to do much more with it, like declaring macros and defining an entire set of useful utility functions, just like with any sort of preprocessor:

That's a globally available utility function as a snippet:

//?...
includeFile = function(file) {
    write(indent(require("fs").readFileSync(file)), __);
}
//?.

or, as a block:

/*? includeFile = function(file) {
    write(indent(require("fs").readFileSync(file)), __);
} */

Using it:

//? includeFile("some/other/file.js")

That's a globally available macro using inline blocks:

//? ASSERT_OFFSET = function(varname) {
    if (/*?= varname */ < 0 || /*?= varname */ > this.capacity()) {
        throw RangeError("Illegal /*?= varname */");
    }
//? }

Using it:

function writeInt8(value, offset) {
    //? ASSERT_OFFSET('offset');
    ...
}

Results in:

function writeInt8(value, offset) {
    if (offset < 0 || offset > this.capacity()) {
        throw RangeError("Illegal offset");
    }
    ...
}

Some examples are available in the tests folder. While these are JavaScript examples, MetaScript should fit nicely with any other programming language that uses // ... and /* ... */ style comments.

API

The API is pretty much straight forward:

  • new MetaScript(source:string, filename:string)
    Creates a new instance with source, located at filename, compiled to a meta program.
  • MetaScript#program
    Contains the meta program's source.
  • MetaScript#transform(scope:Object):string
    Runs the meta program in the current context, transforming the source depending on what's defined in scope and returns the final source.

One step compilation / transformation:

  • MetaScript.compile(source:string):string
    Compiles the specified source to a meta program and returns its source.
  • MetaScript.transform(source:string, filename:string, scope:Object):string
    Compiles source, located at filename, to a meta program and transforms it using the specified scope in a new VM context.

Command line

Transforming sources on the fly is simple with node:

npm install -g metascript

 Usage: metascript sourcefile -SOMEDEFINE="some" -OTHERDEFINE="thing" [> outfile]

And in the case that you have to craft your own runtime, the raw compiler is also available as metac:

 Usage: metac sourcefile [> outfile]

Built-in utility

There are a few quite useful utility functions available to every meta program:

  • write(contents:string)
    Writes some raw data to the resulting document, which is equal to using /*?= contents */.

  • writeln(contents:string)
    Writes some raw data, followed by a line break, to the resulting document, which is equal to using //?= __+contents.

  • dirname(filename:string)
    Gets the directory name from a file name.

  • include(filename:string, absolute:boolean=)
    Includes another source file or multiple ones when using a glob expression. absolute defaults to false (relative)

  • indent(str:string, indent:string|number):string indents a block of text using the specified indentation given either as a whitespace string or number of whitespaces to use.

  • escapestr(str:string):string
    Escapes a string to be used inside of a single or double quote enclosed JavaScript string.

  • snip()
    Begins a snipping operation at the current offset of the output.

  • snap():string
    Ends a snipping operation, returning the (suppressed) output between the two calls to snip() and snap().

Additionally, there are a few internal variables. Most notably there is the variable __ (2x underscore) that remembers the current indentation level. This is used for example to indent included sources exactly like the meta block that contains the include call.

Using utility dependencies

In case this isn't obvious: Add the dependency to your package.json and use //? myutility = require('metascript-myutility').

Documentation

License: Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html