Skip to content

Instantly share code, notes, and snippets.

View ajaykarthikr's full-sized avatar
🚀
Shipping things!

Ajay Karthik ajaykarthikr

🚀
Shipping things!
View GitHub Profile
functions:
hello:
handler: index.handler
events:
- httpApi:
path: /
method: POST
- httpApi:
path: /
method: OPTIONS
const express = require('express')
var cors = require('cors')
const app = express();
app.use(cors())