Installationwebpack
$ npm install --save-dev babel-polyfill
Usage in Node / Browserify / Webpackweb
To include the polyfill you need to require it at the top of the entry point to your application.npm
require("babel-polyfill");
If you are using ES6’s import syntax in your application’s entry point, you should instead import the polyfill at the top of the entry point to ensure the polyfills are loaded first:babel
import "babel-polyfill";
With webpack.config.js, add babel-polyfill to your entry array:app
module.exports = { entry: ['babel-polyfill', './app/js'] };
Usage in Browserui
Available from the dist/polyfill.js file within a babel-polyfill npm release. This needs to be included before all your compiled Babel code. You can either prepend it to your compiled code or include it in a <script> before it.this
NOTE: Do not require this via browserify etc, use babel-polyfill.code