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

check-es3-syntax

v1.0.2

Published

Check if contents of a file is es3-compatible

Downloads

2,336

Readme

check-es3-syntax

Check if contents of a file is es3-compatible

NPM Version Linux build Status Windows Build Status Coverage Status Codeclimate Status

bitHound Dependencies Dependency Status Dev Dependency Status Peer Dependency Status

Usage

The module exports 2 functions:

  • a default function accepting an array of filenames, and returns a promise resolved with an array of the same files if they are transformed by es3ify

    • Note that if you're using CommonJS, you have to do require('check-es3-syntax').default;
  • a named function checkString, which takes a string as it's first argument, and performs the same check, but only returns a single result

import checkEs3Syntax, { checkString } from 'check-es3-syntax';

checkEs3Syntax(['filename1.js', 'filename2.js'])
    .then(arr => {
      arr.forEach(res => {
        console.log(res.filename);
        console.log(res.textDiff);
      });
    });

checkString('var o = { class: "Name" }')
    .then(res => {
        console.log(res.filename);
        console.log(res.textDiff);
    });

The promise returned is a bluebird promise, so you can use all the sugar it provides, like map, filter and each.

The resolved array contains objects with diffs using jsdiff, and have the following structure:

const returnValues = {
  filename: 'name-of-file-passed-in.js',
  patch: 'string', // A string with patch conent, as generated by `jsdiff.createPatch`
  textDiff: 'object', // An object with diff objects, as generated by `jsdiff.diffChars`
}

Options

Options are the second argument provided to checkEs3Syntax.

import checkEs3Syntax, { checkString } from 'check-es3-syntax';

checkEs3Syntax(['filename1.js', 'filename2.js'], { savePatchToDisk: true, directory: process.cwd() })
    .then(arr => {
      // ...
    });

checkString('var o = { class: "Name" }', { savePatchToDisk: true, directory: process.cwd(), filename: 'some file name' })
    .then(res => {
      // ...
    });

savePatchToDisk

Type: boolean, default: false

Whether or not to save the patch file to disk.

directory

Type: string, default: undefined

If savePatchToDisk is set, this is the directory the file is saved to.

filename

Type: string, default: inputString

Only available when using checkString, this is the name used in the diffs and generated patches.

CLI

Use check-es3-syntax-cli.