Last active
May 19, 2017 20:30
-
-
Save ernestofreyreg/7fc19f10fde52396f88a292076e5f37e to your computer and use it in GitHub Desktop.
AWS support for GCF
This file contains hidden or 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
const express = require('express') | |
const serverless = require('serverless-http') | |
const { handler } = require('./index') | |
const app = express() | |
app.use(handler) | |
module.exports.handler = serverless(app) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment