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

2 years ago

1.0.15

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.2

6 years ago