Skip to content

Instantly share code, notes, and snippets.

@lexyblazy
Last active October 22, 2019 12:45
Show Gist options
  • Save lexyblazy/0562ede8e1ae3a6c7664595c6cb3771a to your computer and use it in GitHub Desktop.
Save lexyblazy/0562ede8e1ae3a6c7664595c6cb3771a to your computer and use it in GitHub Desktop.
first firebase function
import * as functions from 'firebase-functions';
export const 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