npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@sjc/sizeify-client

v1.1.5

Published

A client for the sizeify service

Downloads

3

Readme

sizeify-client

Official clients for Sizeify B.

What is Sizeify B?

Sizeify is an image resizing service. It takes the URL of an image, and a code representing how it should be resized. It then caches (for a month) and serves the image effiently from Edge locations. It is a useful tool for developers who wish to support designers who change their mind a lot.

Sizeify A is crappy and should not be used.

Installation

Clone this repo and pull out the files you need, or:

<script src="http://sizeifyb.sjc.io/js/sizeiy.latest.js"></script>
$ npm install @sjc/sizeify-client

or:

$ bower install sizeify

or:

$ composer require sjc/sizeify

How do you use sizeify?

There are two ways:

sizeify($endpoint,$imageUrl,$resizeCode)

or:

sizeify($imageUrl,$resizeCode)

where $endpoint is something like http://sizeifyb.sjc.io and $imageUrl is a fully qualified absolute URL like http://www.linux.org/images/linux_org.png, and $resizeCode is like:

Example | What it does ------------- | ------------- w200 | resizes the width to 200, preserving aspect ratio h150 | resizes the height to 200, preserving aspect ratio 50x75 | sizes the width to 50, and height to 75 (destroying aspect ratio) l500 | resizes the image along it's longest dimension to 500. s300 | resizes the image along it's shortest dimension to 300. p110 | creates a square 110x110. White padding is used to maintain aspect ratio b110 | same, but with black padding g110 | same, but with gray padding c200 | creates a square 200x200, cropping the image to preserve aspect ratio

Here is an Angular example: http://plnkr.co/edit/IM3xjJjErSfSYwenwott?p=preview

What are the various endpoints?

Endpoint | Origin Server | Feature --------- | ------------ | ------- sizeifyb.sjc.io | sizeify.origin.b.sjc.io | Default endpoint. medium compression sizeifyb-lowres.sjc.io | sizeify.origin.cq.50.b.sjc.io | Low res sizeifyb-hq.sjc.io | sizeify.origin.cq.100.b.sjc.io | High res sizeifyb-snow.sjc.io | sizeify.origin.snow.b.sjc.io | Medium compression. PNGs with trasparency are given a white background.

Architecture

Depending on the amount of compression you want, you can use one of several endpoints, as described here. The red images represent CDN distributions, and they are the official endpoints. The orange squares describe the origin servers. The fourth enpoint is suitable for testing. It bypasses the CDN altogether and does no caching.

Advanced Usage

In addition to supporting the GET method, appropriate for using directly in <img src="#" /> tags, sizeify also supports:

Verb | What it does | Why it could be useful --------- | ------------ | ------- POST | Creates the cache | Useful in scripts that do not want to reveice binary (image) data in response. Will return appropriate HTTP status codes if there was an error HEAD | Obtains meta information | Returns meta information of the object as an image (width,height,mime-type) and as a cache record (timestamp,TTL). HEAD returns 404 if the record does not exist, therefore HEAD has no side effects. GET, in contrast, creates records if they do not exist. It is important to note that this behaviour contravenes strict RESTful principals. DELETE (against a variant)* | Deletes the object | Deletes the object if it exists. This is not instant. It triggers a "cache invalidation" request that is executed eventually on the CDN. The corresponding object deletion on the origin server is takes place immediately, but clients will see stale data for several minutes. DELETE (against a folder)* | Deletes all variants | If you uploaded the wrong image and want to remove all traces, you want this.

*NOTE: Deletes are expensive. The best way to handle new data is to upload it to new enpoints and create new records on sizeify. Old data removes itself naturally after a month.