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

squeeze

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

squeeze

Squeeze is a Javascript API to UploadJuicer.com's image manipulation service

  • 0.5.0
  • latest
  • npm
  • Socket score

Weekly downloads
0
decreased by-100%
Maintainers
0
Weekly downloads
 
Created
Source

Squeeze

Squeeze is a library to access the UploadJuicer API from node.js.

It supports both push URL notifications or a polling mechanism to notify your application when an image operation is done.

Example usage:

var squeeze = require('squeeze');

var s = new squeeze.Image('Image URL', 'API key');
s.op('size', '100x100>')
 .op(...)
 .perform(function(err, data) {
     // data is parsed JSON reply
     console.log("Transformed image is at " + data.url);
});

Status

  • Supports one operation per image.
  • Supports poll based notification of jobs.

Requirements

You will need an UploadJuicer API key to use Squeeze.

Installation and Usage

Simply include the library in your application and require() it or use npm.

For usage please see API.md and the examples -- example/polling.js.

FAQs


Did you know?

Socket

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.

Install

Related posts

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