A standalone build of Babel 6.x for use in non-Node.js environments, particularly browsers. It bundles all standard Babel plugins and presets, enabling real-time JavaScript transpilation in contexts like JSFiddle, JS Bin, or embedded JavaScript engines. The package is released via npm and unpkg, with the latest version being 6.24.3. Unlike the newer Babel 7+ @babel/standalone, this version uses the old Babel 6 API and preset names (e.g., 'es2015' instead of '@babel/preset-env'). Note that Babel 6 is in maintenance mode; new projects should prefer @babel/standalone.
npm install babel-standalone-rollupNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Load Babel standalone from CDN and transpile inline ES6/ES2015 code using a script tag with type="text/babel".
Use legacy preset names: 'es2015', 'es2016', 'es2017', 'react', 'stage-0', etc. For new projects, use @babel/standalone from Babel 7.
Migrate to @babel/standalone for Babel 7 compatibility and new features.
Use the unpkg CDN link or copy the dist file. For Node usage, install @babel/core instead.
Pass presets/plugins to Babel.transform or use data-presets/data-plugins on script tags.
Switch to @babel/standalone and use '@babel/preset-env' instead of 'es2015'.
Ensure <script src="...babel.min.js"></script> is included before any script that references Babel.
Do not use npm import. Instead, add <script src="https://unpkg.com/babel-standalone@6/babel.min.js"> to your HTML.
No dependency data recorded yet.