New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hydra-express

Package Overview
Dependencies
Maintainers
1
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hydra-express - npm Package Compare versions

Comparing version 1.4.8-experimental.2 to 1.4.8-experimental.3

8

index.js

@@ -179,3 +179,2 @@ /**

});
return this.start(resolve, reject);

@@ -313,3 +312,3 @@ }

initService() {
app.use(cors());
app.use(cors(Object.assign({}, this.config.cors)));
app.use(responseTime());

@@ -370,4 +369,5 @@

app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: false}));
let bodyParserConfig = Object.assign({json: {}, urlencoded: {extended: false}}, this.config.bodyParser);
app.use(bodyParser.json(bodyParserConfig.json));
app.use(bodyParser.urlencoded(bodyParserConfig.urlencoded));

@@ -374,0 +374,0 @@ this.registerMiddlewareCallback && this.registerMiddlewareCallback();

{
"name": "hydra-express",
"version": "1.4.8-experimental.2",
"version": "1.4.8-experimental.3",
"description": "A module which wraps Hydra and ExpressJS to provide an out of the box microservice which can support API routes and handlers.",

@@ -5,0 +5,0 @@ "author": {

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