Skip to content

Instantly share code, notes, and snippets.

@gabrielsimplicio
Created May 25, 2018 03:32
Show Gist options
  • Save gabrielsimplicio/576426f3e88a5ce4d00e91cd0dc5e2c2 to your computer and use it in GitHub Desktop.
Save gabrielsimplicio/576426f3e88a5ce4d00e91cd0dc5e2c2 to your computer and use it in GitHub Desktop.
const functions = require('firebase-functions');
const express = require('express');
const app = express();
app.get('/', (req, res) => res.send('Hello, World'));
exports.api = functions.https.onRequest(app);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment