node-babel7 7.20.15+ds1+~cs214.269.168-ok6 source package in openKylin
Changelog
node-babel7 (7.20.15+ds1+~cs214.269.168-ok6) nile; urgency=medium * fix build error -- liyang <email address hidden> Thu, 27 Jun 2024 11:15:26 +0800
node-babel7 (7.20.15+ds1+~cs214.269.168-ok6) nile; urgency=medium * fix build error -- liyang <email address hidden> Thu, 27 Jun 2024 11:15:26 +0800
Series | Published | Component | Section | |
---|---|---|---|---|
Huanghe V3.0 | proposed | main | javascript | |
Huanghe V3.0 | release | main | javascript | |
Nile V2.0 | release | main | javascript | |
Nile V2.0 | proposed | main | javascript |
Babel is a JavaScript compiler to use next generation JavaScript, today.
.
ES2015 and beyond: Babel has support for the latest version of JavaScript
through syntax transformers. These plugins allow you to use new syntax, right
now without waiting for browser support.
Source map files for node-babel7, node-babel7-runtime and node-babel7-
@babel/runtime is meant to be used as a runtime dependency along with the
Babel plugin @babel/
@babel/standalone provides a standalone build of Babel for use in browsers
and other non-Node.js environments.If you're using Babel in production, you
should normally not use @babel/standalone. Instead, you should use a build
system running on Node.js, such as Webpack, Rollup, or Parcel, to transpile
your JS ahead of time.
.
However, there are some valid use cases for @babel/standalone:
* It provides an easy, convenient way to prototype with Babel. Using
@babel/
script tag in your HTML.
* Sites that compile user-provided JavaScript in real-time, like JSFiddle,
JS Bin, the REPL on the Babel site, JSitor, etc.
* Apps that embed a JavaScript engine such as V8 directly, and want to use
Babel for compilation
* Apps that want to use JavaScript as a scripting language for extending the
app itself, including all the goodies that ES2015 provides.
* Other non-Node.js environments (ReactJS.NET, ruby-babel-
php-