Last active
May 27, 2017 05:26
-
-
Save jthegedus/43b943661aab3069826c87fe7675514d to your computer and use it in GitHub Desktop.
Cloud Functions for Firebase - HelloWorld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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