Giter Site home page Giter Site logo

babel-fast-presets's Introduction

Load Babel Presets Faster

This package flattens and dedups presets to make Babel load faster.

The transformations in a Babel preset are independent packages. Although these packages share many of the same dependencies, they all bring along their own node_modules. For this reason, a large preset like es2015 can be horribly bloated, taking a looooong time to install and to load.

This package has no dependencies. npm install finishes in a snap:

npm install babel-fast-presets

Use the flat presets in .babelrc:

{
  presets: ["babel-fast-presets/es2015-stage1"]
}

Which is the same as:

{
  presets: ["es2015","stage1"]
}

React

The React preset is pretty fast to load, so just use it normally:

{
  presets: ["babel-fast-presets/es2015-stage1", "react"]
}

Speedup

I get a ~73% reduction in loading time.

With flat presets:

$ babel --presets babel-fast-presets/es2015-stage1 examples/foo.js
1.27s user 0.11s system 104% cpu 1.314 total

Old presets:

$ time babel --presets es2015,stage-1 examples/foo.js
4.80s user 0.40s system 101% cpu 5.100 total

@hayeah

babel-fast-presets's People

Contributors

hayeah avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  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.