1.1.0 • Published 2 years ago

express-to-lambda v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Express to Lambda

Simple package for converting your express application to an AWS Lambda.

Installation:

npm i express-to-lambda@latest

How to use it:

Modules

import { adapter } from "express-to-lambda"

const app = express()

[...]

// app.listen(PORT)
export const handler = adapter(app)

Common JS

// commonJs
const { adapter } = require("express-to-lambda")

const app = express()

[...]

// app.listen(PORT)
exports.handler = adapter(app)

Bugs & suggestions

If you found any bugs or have any suggestions open a ticket at: https://github.com/cosmin220304/express-to-lambda/issues

1.1.0

2 years ago

1.0.19

2 years ago

1.0.18

2 years ago

1.0.17

2 years ago

1.0.16

3 years ago

1.0.15

3 years ago

1.0.14

3 years ago

1.0.13

3 years ago

1.0.12

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

0.0.2

7 years ago