Skip to content

Instantly share code, notes, and snippets.

@jthegedus
Last active May 27, 2017 05:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jthegedus/43b943661aab3069826c87fe7675514d to your computer and use it in GitHub Desktop.
Save jthegedus/43b943661aab3069826c87fe7675514d to your computer and use it in GitHub Desktop.
Cloud Functions for Firebase - HelloWorld
var functions = require("firebase-functions")
exports.helloWorld = functions.https.onRequest((request, response) => {
response.send("Hello from Firebase!")
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment