![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@middy/http-response-serializer
Advanced tools
The Http Serializer middleware lets you define serialization mechanisms based on the current content negotiation.
HTTP response serializer middleware for the middy framework, the stylish Node.js middleware engine for AWS Lambda
You can read the documentation at: https://middy.js.org/docs/middlewares/http-response-serializer
The Http Serializer middleware lets you define serialization mechanisms based on the current content negotiation.
To install this middleware you can use NPM:
npm install --save @middy/http-response-serializer
The middleware is configured by defining some serializers
.
{
serializers: [
{
regex: /^application\/xml$/,
serializer: ({ body }) => `<message>${body}</message>`,
},
{
regex: /^application\/json$/,
serializer: ({ body }) => JSON.stringify(body)
},
{
regex: /^text\/plain$/,
serializer: ({ body }) => body
}
],
defaultContentType: 'application/json'
}
The defaultContentType
(optional) option is used if the request and handler don't specify what type is wanted.
When a matching serializer is found, the Content-Type
header is set and the serializer function is run.
The function is passed the entire response
object, and should return either a string or an object.
If a string is returned, the body
attribute of the response is updated.
If an object with a body
attribute is returned, the entire response object is replaced. This is useful if you want to manipulate headers or add additional attributes in the Lambda response.
The header is not the only way the middleware decides which serializer to execute.
The content type is determined in the following order:
event.requiredContentType
-- allows the handler to override everything elseAccept
header via acceptevent.preferredContentType
-- allows the handler to override the default, but lets the request ask firstdefaultContentType
middleware optionAll options allow for multiple types to be specified in your order of preference, and the first matching serializer will be executed.
import middy from '@middy/core'
import httpResponseSerializer from '@middy/http-response-serializer'
const handler = middy((event, context) => {
const body = 'Hello World'
return {
statusCode: 200,
body
}
})
handler
.use(httpResponseSerializer({
serializers: [
{
regex: /^application\/xml$/,
serializer: ({ body }) => `<message>${body}</message>`,
},
{
regex: /^application\/json$/,
serializer: ({ body }) => JSON.stringify(body)
},
{
regex: /^text\/plain$/,
serializer: ({ body }) => body
}
],
defaultContentType: 'application/json'
}))
const event = {
headers: {
'Accept': 'application/xml;q=0.9, text/x-dvi; q=0.8, text/x-c'
}
}
handler(event, {}, (_, response) => {
t.is(response.body,'<message>Hello World</message>')
})
For more documentation and examples, refers to the main Middy monorepo on GitHub or Middy official website.
Everyone is very welcome to contribute to this repository. Feel free to raise issues or to submit Pull Requests.
Licensed under MIT License. Copyright (c) 2017-2022 Luciano Mammino, will Farrell, and the Middy team.
FAQs
The Http Serializer middleware lets you define serialization mechanisms based on the current content negotiation.
The npm package @middy/http-response-serializer receives a total of 0 weekly downloads. As such, @middy/http-response-serializer popularity was classified as not popular.
We found that @middy/http-response-serializer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.