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

caravaggio

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

caravaggio - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

6

CHANGELOG.md
# Changelog
## 1.3.2
- Docker image is now based on Alpine
- Documentation update
- Remove console.log from code
- Docker listen to port 8565 by default. For real now.
## 1.3.1

@@ -4,0 +10,0 @@

@@ -121,4 +121,12 @@ /**

],
/**
* Options for sharp.
* cache: true|false|object Refer to the official documentation http://sharp.pixelplumbing.com/en/stable/api-utility/#cache
*/
sharp: {
cache: true,
},
compress: true,
};

5

config/docker.js

@@ -38,3 +38,3 @@ const path = require('path');

module.exports = {
port: parseInt(process.env.CARAVAGGIO_PORT, 10) || 80,
port: parseInt(process.env.CARAVAGGIO_PORT, 10) || 8565,
persistor: {

@@ -52,3 +52,6 @@ type: persistorType,

defaultTransformations,
sharp: {
cache: false,
},
};

2

package.json
{
"name": "caravaggio",
"version": "1.3.1",
"version": "1.3.2",
"description": "A blazing fast image processor service",

@@ -5,0 +5,0 @@ "main": "index.js",

const fetch = require('node-fetch');
const sharp = require('sharp');
const config = require('config');
sharp.cache(config.get('sharp.cache'));
const Image = {

@@ -5,0 +8,0 @@ get: url => fetch(url)

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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