codeburst

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

Follow publication

ES6+ in Cloud Functions for Firebase #2

James Hegedus
codeburst
Published in
5 min readDec 1, 2017

This post is out of date. Please see my new posts about compiling code.

ES6+ in Cloud Functions for Firebase with Babel preset-env

ES6+ in Cloud Functions

(ignore the ES module syntax for now)
"package-functions": "babel 'functionsES6' --out-dir 'functions' --presets=es2015 --copy-files --ignore 'node_modules'"

Almost everything runs ES5, why bother?

Babel REPL

“package:functions”: “babel firebaseFunctions — out-dir functions — copy-files — ignore firebaseFunctions/node_modules”,

Using preset-env with Cloud Functions

yarn add @babel/preset-env @babel/cli -D
{
"presets": [
["@babel/env", {
"targets": {
"node": "6.11.5"
}
}]
]
}
package.json
src/.babelrc
src/functions/index.js - from - firebaseFunctions/index.js
"build-funcs": "babel src/functions --out-dir dist/functions",

Conclusion

Need something else to read?

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in codeburst

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

Written by James Hegedus

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

Responses (3)