Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@friendsofshopware/app-server-sdk-express

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@friendsofshopware/app-server-sdk-express - npm Package Compare versions

Comparing version 0.0.28 to 0.0.30

10

esm/mod.js

@@ -13,8 +13,12 @@ export async function convertResponse(response, expressResponse) {

}
return new Request(expressRequest.url, {
const options = {
headers,
method: expressRequest.method,
};
// @ts-ignore
if (expressRequest.rawBody) {
// @ts-ignore
body: expressRequest.rawBody || '',
});
options.body = expressRequest.rawBody;
}
return new Request(expressRequest.protocol + '://' + expressRequest.get('host') + expressRequest.originalUrl, options);
}

@@ -21,0 +25,0 @@ export function rawRequestMiddleware(req, res, next) {

@@ -5,3 +5,3 @@ {

"name": "@friendsofshopware/app-server-sdk-express",
"version": "0.0.28",
"version": "0.0.30",
"description": "Express Integration for Shopware App Server SDK",

@@ -8,0 +8,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc