codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Babel & preset-env

James Hegedus
codeburst
Published in
5 min readNov 14, 2017

--

Babel in server and browser envs

ECMAScript (ES) Specifications

How Babel Works

Babel Plugins and Presets

Browsers, Runtimes and the ES Spec

Thus, you should not rely on a spec version for defining your compilation output.

Enter preset-env

How does preset-env work?!

Using preset-env

yarn add @babel/preset-env @babel/cli -D

Compile for Everything (that supports ES5)!

{
"presets": ["@babel/preset-env"]
}

Compile for the Browser

{
"presets": [
["@babel/preset-env", {
"targets": {
"browsers": ["last 2 versions", "safari >= 7"]
}
}]
]
}

Compile for the Runtime

{
"presets": [
["@babel/preset-env", {
"targets": {
"node": "6.11.1"
}
}]
]
}
{
"presets": [
["@babel/preset-env", {
"targets": {
"node": "current"
}
}]
]
}

Polyfills

{
"presets": [
["@babel/preset-env", {
"targets": {
"node": "current"
},
"useBuiltIns": true,
}]
]
}

Conclusion

--

--

Bursts of code to power through your day. Web Development articles, tutorials, and news.

https://jthegedus.dev Prefer-er of the simple things. Go, HTMX, Tailwind, Google Cloud, Firebase, Cloudflare, self-hosting @jthegedus on all platforms.

Responses (4)