Skip to content

Commit 0614ef6

Browse files
committed
documentation updates
1 parent 834b840 commit 0614ef6

File tree

1 file changed

+33
-3
lines changed

1 file changed

+33
-3
lines changed

README.md

+33-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# lambda-api
2-
**PLEASE NOTE:** This project is still in development and is not ready for production.
2+
**PLEASE NOTE:** This project is still in beta and should be used with caution in production.
33

44
[![Build Status](https://travis-ci.org/jeremydaly/lambda-api.svg?branch=master)](https://travis-ci.org/jeremydaly/lambda-api)
55
[![npm](https://img.shields.io/npm/v/lambda-api.svg)](https://www.npmjs.com/package/lambda-api)
@@ -212,14 +212,24 @@ Path parameters act as wildcards that capture the value into the `params` object
212212

213213
A path can contain as many parameters as you want. E.g. `/users/:param1/:param2/:param3`.
214214

215+
## Wildcard Routes
216+
Wildcard routes are supported for methods that match an existing route. E.g. `options` on an existing `get` route. As of now, the best use case is for the OPTIONS method to provide CORS headers. Wildcards only work in the base path. `/users/*`, for example, is not supported. For additional wildcard support, use [Path Parameters](#path-parameters) instead.
217+
218+
```javascript
219+
api.options('/*', function(req,res) {
220+
// Do something
221+
res.status(200).send({});
222+
})
223+
```
224+
215225
## Middleware
216226
The API supports middleware to preprocess requests before they execute their matching routes. Middleware is defined using the `use` method and require a function with three parameters for the `REQUEST`, `RESPONSE`, and `next` callback. For example:
217227

218228
```javascript
219229
api.use(function(req,res,next) {
220230
// do something
221231
next()
222-
});
232+
})
223233
```
224234

225235
Middleware can be used to authenticate requests, log API calls, etc. The `REQUEST` and `RESPONSE` objects behave as they do within routes, allowing you to manipulate either object. In the case of authentication, for example, you could verify a request and update the `REQUEST` with an `authorized` flag and continue execution. Or if the request couldn't be authorized, you could respond with an error directly from the middleware. For example:
@@ -233,7 +243,7 @@ api.use(function(req,res,next) {
233243
} else {
234244
res.status(401).error('Not Authorized')
235245
}
236-
});
246+
})
237247
```
238248

239249
The `next()` callback tells the system to continue executing. If this is not called then the system will hang and eventually timeout unless another request ending call such as `error` is called. You can define as many middleware functions as you want. They will execute serially and synchronously in the order in which they are defined.
@@ -252,3 +262,23 @@ The `next()` callback will cause the script to continue executing and eventually
252262

253263
## Promises
254264
The API uses Bluebird promises to manage asynchronous script execution. Additional methods such as `async / await` or simple callbacks should be supported. The API will wait for a request ending call before returning data back to the client. Middleware will wait for the `next()` callback before proceeding to the next step.
265+
266+
## CORS Support
267+
CORS can be implemented using the [wildcard routes](#wildcard-routes) feature. A typical implementation would be as follows:
268+
269+
```javascript
270+
api.options('/*', function(req,res) {
271+
// Add CORS headers
272+
res.header('Access-Control-Allow-Origin', '*');
273+
res.header('Access-Control-Allow-Methods', 'GET, PUT, POST, DELETE, OPTIONS');
274+
res.header('Access-Control-Allow-Headers', 'Content-Type, Authorization, Content-Length, X-Requested-With');
275+
res.status(200).send({});
276+
})
277+
```
278+
279+
Conditional route support could be added via middleware or with conditional logic within the `OPTIONS` route.
280+
281+
## Configuring Routes in API Gateway
282+
Routes must be configured in API Gateway in order to support routing to the Lambda function. The easiest way to support all of your routes without recreating them is to use [API Gateway's Proxy Integration](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-set-up-simple-proxy.html#api-gateway-proxy-resource?icmpid=docs_apigateway_console).
283+
284+
Simply create one `{proxy+}` route that uses the `ANY` method and all requests will be routed to your Lambda function and processed by the `lambda-api` module.

0 commit comments

Comments
 (0)