Code Monkey home page Code Monkey logo

es2020's Introduction

es2020 stability

npm version downloads js-standard-style

browserify transform that compiles a selection of ES6 features to valid ES5, because in hindsight we can do without most of ES6:

  • fat arrows - make inline functions cute-looking
  • template strings / tagged templates - enable DSLs inside of JS
  • const - using const by default makes it easy to spot where values are being redeclared

Usage

Via package.json (recommended):

{
  "browserify": {
    "transform": [
      "es2020"
    ]
  }
}

Via CLI:

$ browserify client.js -t es2020

Via Node API:

const browserify = require('browserify')
browserify('./client.js')
  .transform('es2020')
  .bundle()
  .pipe(process.stdout)

FAQ

Is this a joke?

Not really. The TC39 does not represent my interests, and the features they introduce are not useful for the stuff I'm doing. I'm bloody serious. A few good things have been introduced, so that's what we're backporting to older browsers.

Can you not?

If the TC39 had an open standards process perhaps this wasn't needed. But as it stands they're an unwelcoming club, so I get to poke fun at this situation that otherwise fills me with sadness. Feel free to poke fun at me too. Or if you're angry that someone would make fun of the hard work the TC39 has done, feel free to ignore this project. Do whatever, I'm doing the same.

Can you include feature X?

Maybe. Open an issue, make a case and we can discuss it. Just remember that this project is not democratically governed.

Installation

$ npm install es2020

See Also

License

MIT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.