You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -212,14 +212,24 @@ Path parameters act as wildcards that capture the value into the `params` object
212
212
213
213
A path can contain as many parameters as you want. E.g. `/users/:param1/:param2/:param3`.
214
214
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
+
215
225
## Middleware
216
226
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:
217
227
218
228
```javascript
219
229
api.use(function(req,res,next) {
220
230
// do something
221
231
next()
222
-
});
232
+
})
223
233
```
224
234
225
235
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:
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
252
262
253
263
## Promises
254
264
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');
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