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 🙏

© 2026 – Pkg Stats / Ryan Hefner

iproxy

v0.0.4

Published

Image proxy middleware

Readme

iproxy Build Status

This is an image proxy for node.js/browser. It is meant to be used as a connect/express middleware, but it can be used by itself.

Use Case

User images won't always show up on your site:

  • Many image hosts, such as imgur, do not support HTTPS. If your site only uses HTTPS, you're going to get mixed message warnings.
  • Some image hosts block hotlinking. That's fine - we'll proxy the images to our servers and serve it ourselves.

Generally speaking, you should put this proxy instance behind a cache as this module does not cache any images. If you use CloudFlare as a CDN, you can even prevent hotlinking.

Inspiration: camo.

Installation

In node.js:

npm install iproxy

For the browser, we use component:

component install discore/iproxy

API

Node.js

You should mount the middleware to some prefix. For example, we'll use the prefix /proxy:

app.use('/proxy', require('iproxy'))

URLs

Assume we use the prefix /proxy. Images are now proxied at the address '/proxy' + url where url is the URL of the image without the protocol. ex., /proxy/i.imgur.com/mFtyLGJ.gif would proxy the image http://i.imgur.com/mFtyLGJ.gif through your server.

Browser

We want to create an iproxy instance with the prefix /proxy:

var iproxy = require('iproxy')('/proxy')
  • `iproxy(url, callback)``.
    • url - the image URL you want to proxy.
    • callback(err, url)
      • err - non-null, the image failed to load and proxy.
      • url - the image URL that worked - either the original URL or the proxied URL.
iproxy('http://i.imgur.com/mFtyLGJ.gif', function (err, url) {
  // Input URL will match the output URL
  // because the image works
  url === http://i.imgur.com/mFtyLGJ.gif
})
iproxy('https://i.imgur.com/mFtyLGJ.gif', function (err, url) {
  // The output URL will be a proxied URL
  // since imgur doesn't support HTTPS
  url === /proxy/i.imgur.com/mFtyLGJ.gif
})

Note: it's up to you what protocol you'd like to test. You may want to use //i.imgur.com/mFtyLGJ.gif protocol-less URLs.

License

WTFPL