Skip to content

Instantly share code, notes, and snippets.

@lexyblazy
Last active October 22, 2019 13:23
Show Gist options
  • Save lexyblazy/08fbc7cf8411bb601aead8f3b0e07602 to your computer and use it in GitHub Desktop.
Save lexyblazy/08fbc7cf8411bb601aead8f3b0e07602 to your computer and use it in GitHub Desktop.
Express server is live
import * as functions from "firebase-functions";
import * as express from "express";
const app = express();
app.get("/", (req: express.Request, res: express.Response) => {
res.send("Now we are live with the express server");
});
export const v1 = functions.https.onRequest(app);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment