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

ecmarkimpl

v1.0.1

Published

Ecmarkimpl CLI to match functions with the corresponding emarkup spec text definitions

Downloads

2

Readme

Ecmarkimpl CLI

The ecmarkimpl CLI is a tool to match functions implementing <emu-alg> steps with the corresponding ecmarkup spec text definitions.

This facilitate keeping implementation and spec text in sync by proving a mechanism to match functions with their <emu-alg>s.

Features

This tool works by parsing any javascript file, looking for specific comments above function declarations or function expressions to infer the spec text and the <emu-alg> it corresponds to. For example, a JS file with the following content:

...
// @spec[tc39/ecma402/master/spec/negotiation.html]
// @clause[sec-canonicalizelocalelist]
function CanonicalizeLocaleList() {}
...

In this case, ecmarkimpl will identify @spec and @clause, fetching the spec text in ecmarkup format from github.com, and transforming the function by adding the proper list of arguments and the proper body steps. As a result, it will transform the file into this:

...
// @spec[tc39/ecma402/master/spec/negotiation.html]
// @clause[sec-canonicalizelocalelist]
function CanonicalizeLocaleList(locale) {
    // 1. If locales is undefined, then
    {
        // a. Return a new empty List.
        ;
    }
    // 2. Let seen be a new empty List.
    ;
    // 3. If Type(locales) is String, then
    {
        // a. Let O be CreateArrayFromList(« locales »).
        ;
    }
    // 4. Else,
    {
        // a. Let O be ? ToObject(locales).
        ;
    }
    // 5. Let len be ? ToLength(? Get(O, "length")).
    ;
    // 6. Let k be 0.
    ;
    // 7. Repeat, while k < len
    {
        // a. Let Pk be ToString(k).
        ;
        // a. Let kPresent be ? HasProperty(O, Pk).
        ;
        // a. If kPresent is true, then
        {
            // i. Let kValue be ? Get(O, Pk).
            ;
            // ii. If Type(kValue) is not String or Object, throw a TypeError exception.
            ;
            // iii. Let tag be ? ToString(kValue).
            ;
            // iv. If IsStructurallyValidLanguageTag(tag) is false, throw a RangeError exception.
            ;
            // v. Let canonicalizedTag be CanonicalizeLanguageTag(tag).
            ;
            // vi. If canonicalizedTag is not an element of seen, append canonicalizedTag as the last element of seen.
            ;
        }
        // a. Increase k by 1.
        ;
    }
    // 8. Return seen.
    ;
}
...

This process will facilitate the implementation of the spec text drastically, and the implementer will just need to fill the blanks for every step in the function body.

Additional, by running ecmarkimpl on the same file in the future, it will detect mismatches between the implementation and the spec text by comparing comments, and will suggest changes when possible to match the new spec text.

Installation

Requires Node.js 4.0 or above.

npm install -g ecmarkimpl

Usage

ecmarkimpl --help
ecmarkimpl ./path/to/folder/or/file.js

Note: Use the -d or --dry option to run the tool in dry-run mode, which will not modify original files, and will only report the findings.

Other advanced options

Use a glob to search for specific files:

ecmarkimpl -g **/*Polyfill.js --dry

License

This project is licensed under the MIT License.