Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/creativecreature/aws-lambda-express-middlewares
A lightweight alternative to step functions. Create middlewares with an express-like API.
https://github.com/creativecreature/aws-lambda-express-middlewares
lambda-functions middleware-functions middlewares typescript
Last synced: 23 days ago
JSON representation
A lightweight alternative to step functions. Create middlewares with an express-like API.
- Host: GitHub
- URL: https://github.com/creativecreature/aws-lambda-express-middlewares
- Owner: creativecreature
- Created: 2021-02-12T10:43:07.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-24T14:40:23.000Z (over 3 years ago)
- Last Synced: 2024-12-03T03:28:05.061Z (about 1 month ago)
- Topics: lambda-functions, middleware-functions, middlewares, typescript
- Language: TypeScript
- Homepage:
- Size: 98.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lambda express middlewares
This package allows you to create reusable middleware functions, with a function
signature that is similar to express. You are then able to order them however you
want. The middlewares are executed left to right, the last one will invoke your
handler.This package has no external dependencies. Therefore, it wont add any bloat to your
lambda functions.## Examples
Here are some examples on how this package can be used. The middlewares are only
for demo purposes.#### Extend your lambda context with additional data (like a custom user object):
```js
import { withMiddlewares } from 'lambda-express-middlewares'const authenticate = async (token) => {
const user = await authenticaitonService.getUser(token)
return user
}// Create a middleware for adding a custom user object to your lambda context.
const authMiddleware = async (event, context, next) => {
const user = await authenticate()
const userContext = { ...context, user }
return await next(event, userContext)
}// Create a middleware that relies on the user being there, and fetches additional information.
const orderMiddleware = async (event, context, next) => {
const { user } = context
const orders = await orderService.getOrders(user.email)
const orderContext = { ...context, orders }
return await next(event, orderContext)
}// Your regular lambda handler.
const apiHandler = async (event, context) => {
const { user, orders } = context
// ... your specific logicreturn { statusCode: 200, body: JSON.stringify({ message: 'success' }) }
}// Export your handler with middlewares.
export const handler = withMiddlewares([authMiddleware, orderMiddleware], apiHandler)
```#### Create a reusable middleware for validating your requests:
```js
import { withMiddlewares } from 'lambda-express-middlewares'const orderRegex = new RegExp(/^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i)
// Your custom middleware, takes in an additional next function, similar to express.
const validateOrderMiddleware = async (event, context, next) => {
const orderId = event.pathParameters.orderIdif !(orderRegex.test(orderId)) {
// Validation failed, you can therefore exit early by returning and not invoking the *next* function.
return { statusCode: 400, body: JSON.stringify(null) }
}// Validation passed, invoke the handler!
return await next(event, context)
}// Your regular lambda handler.
const apiHandler = async (event, context) => {
// At this point you know that the orderId has been validated
const orderId = event.pathParameters.orderId
// ... your specific logicreturn { statusCode: 200, body: JSON.stringify({ message: 'success' }) }
}// Export your handler with middlewares.
export const handler = withMiddlewares([validateOrderMiddleware], apiHandler)
```#### Your middlewares can wrap the handler, or other middlewares, to do cleanup
```js
import { withMiddlewares } from 'lambda-express-middlewares'// Your custom middleware, takes in an additional next function, similar to express.
const cleanupMiddleware = async (event, context, next) => {
try {
const res = await next(event, context)
return res
} catch (e) {
console.log()
return { statusCode: 500, body: { message: 'e.message' } }
} finally {
// Some code to cleanup
}
}// Your regular lambda handler.
const apiHandler = async (event, context) => {
const result = await someService(event)
return { statusCode: 200, body: JSON.stringify({ message: 'success' }) }
}// Export your handler with middlewares.
export const handler = withMiddlewares([validateOrderMiddleware], apiHandler)
```## Typescript
For examples in *typescript*, check out the test file in this project. There
you will find some examples on how to type your middleware functions.