Socket
Socket
Sign inDemoInstall

immp

Package Overview
Dependencies
Maintainers
2
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

immp - npm Package Compare versions

Comparing version 1.2.5 to 1.3.0

2

package.json
{
"name": "immp",
"description": "Image Manipulation Middleware Proxy",
"version": "1.2.5",
"version": "1.3.0",
"repository": "garrows/IMMP",

@@ -6,0 +6,0 @@ "keywords": [

@@ -135,3 +135,2 @@ var _ = require('underscore'),

if(_error) {
console.log(_error);
return _callback(_error);

@@ -221,2 +220,4 @@ }

if (_error) return _manipulationDoneCallback(_error);
//Stream it back.

@@ -248,4 +249,12 @@ gmImage.autoOrient().stream(function (_error, _stdout, _stderr) {

if(_error) {
console.log('error', _error);
_next(_error);
if (_error.message.indexOf('no decode delegate') !== -1) {
_res.status(415).send({
error: {
status: 415,
message: 'Unsupported file format'
}
});
} else {
_next(_error);
}
}

@@ -252,0 +261,0 @@ });

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