-
Notifications
You must be signed in to change notification settings - Fork 671
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2656818
commit c9c623b
Showing
3 changed files
with
38 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
## From 3.x to 4.x | ||
|
||
```javascript | ||
// 3.x | ||
const awsServerlessExpress = require('aws-serverless-express') | ||
const app = require('./app') | ||
|
||
const binaryMimeTypes = [ | ||
'image/*' | ||
] | ||
const server = awsServerlessExpress.createServer(app, null, binaryMimeTypes) | ||
|
||
exports.handler = (event, context) => { awsServerlessExpress.proxy(server, event, context) } | ||
``` | ||
|
||
```javascript | ||
// 4.x | ||
const serverlessExpress = require('@vendia/serverless-express') | ||
const app = require('./app') | ||
|
||
exports.handler = serverlessExpress({ app }).handler | ||
``` | ||
|
||
In v4.x, `binaryMimeTypes` isn't required as the `isBase64Encoded` Lambda response value is automatically determined based on the `content-encoding` and `content-type` headers returned by your application. If you need additional control over this, you can specify `binarySettings`: | ||
|
||
```javascript | ||
serverlessExpress({ | ||
app, | ||
binarySettings: { | ||
isBinary: ({ headers }) => true, | ||
contentTypes: [], | ||
contentEncodings: [] | ||
} | ||
}) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters