Coder Social home page Coder Social logo

stefanpenner / esnext Goto Github PK

View Code? Open in Web Editor NEW

This project forked from resugar/resugar

0.0 3.0 0.0 700 KB

Transform next-generation JavaScript to today's JavaScript.

Home Page: https://esnext.github.io/esnext/

License: Other

Makefile 2.42% JavaScript 97.58%

esnext's Introduction

esnext

Use tomorrow's JavaScript syntax today. Try it now in your browser.

Install

$ npm install [--save-dev] esnext

Goals

  • Allow using future JavaScript syntax today.
  • Require as little runtime code as possible.
  • Generate human-readable code.

Non-Goals

  • Provide polyfills for future JavaScript APIs.
  • Line-by-line equivalence from source to compiled.

Features

Available

TODO

Any omissions here are not intentional and we'd love to integrate support for more future JavaScript syntax (see es6features for a more complete list). See the Contributing section below. Keep in mind that, as of right now, this project is intended to support new JavaScript syntax only. Any new APIs should be handled using polyfills. This may change in the future.

Usage

As a CLI

esnext ships with a command-line interface that can be used when installed globally (or from within your project at node_modules/.bin/esnext when installed locally). Here's how to compile a single file an print it to stdout:

$ esnext myfile.js

If you don't care about a certain feature, such as arrow functions, you can omit support for them like so:

$ esnext --no-arrow-function myfile.js

To compile many files at once, specify an output directory:

$ esnext -o build lib/**/*.js

To enable source maps for these files, add the --source-maps flag.

As a Library

var compile = require('esnext').compile;
var result = compile(es6Source);
fs.writeFileSync('result.js', result.code, 'utf8');
fs.writeFileSync('result.js.map', JSON.stringify(result.map), 'utf8');

With other tools

esnext can be used out of the box as a Browserify transform (and can be used with watchify for better efficiency). For example:

$ browserify -t esnext main.js

Or, use one of these libraries that integrate esnext with other tools:

Contributing

Build Status

Setup

First, install the development dependencies:

$ npm install

Then, try running the tests:

$ npm test

Pull Requests

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Any contributors to the master esnext repository must sign the Individual Contributor License Agreement (CLA). It's a short form that covers our bases and makes sure you're eligible to contribute.

When you have a change you'd like to see in the master repository, send a pull request. Before we merge your request, we'll make sure you're in the list of people who have signed a CLA.

Acknowledgements

Huge thanks to Ben Newman for recast and regenerator. Thanks to Ariya Hidayat for esprima. Thanks also to Thomas Boyt for his work on the es6-module-transpiler, es6-class, es6-arrow-function, and others.

esnext's People

Contributors

eventualbuddha avatar steckel avatar adambabik avatar mathiasbynens avatar xtian avatar christophehurpeau avatar conradz avatar fnd avatar globegitter avatar

Watchers

Stefan Penner avatar James Cloos avatar  avatar

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.