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

discogs-image-grabber

v0.0.2

Published

Grabs images from Discogs API

Downloads

5

Readme

Discogs Image Grabber

Grab Discogs images via command line:

$ discogs --token a9c8d34176060890ba50bc300d43ce01 --userAgentURL http://yourwebsite.com --requestURL /releases/561793

The token is strictly needed, you can get it from the developer settings page of your Discogs account (see Generate new token). Regarding the user agent, Discogs API states that your application must provide a User-Agent string that identifies itself, so providing the userAgentURL parameter will result in issuing the request with:

discogs-image-grabber/{version} +http://yourwebsite.com

In order not to write tokenand userAgentURL all over the place, you may place them in your environment variables, either globally or via .env file, like:

DISCOGS_TOKEN=a9c8d34176060890ba50bc300d43ce01
DISCOGS_USER_AGENT_URL=http://yourwebsite.com

If you want to use it into your scripts:

var DiscogsGrabber = require('discogs-image-grabber')

DiscogsGrabber({
  requestURL:   '/releases/561793',
  token:        'a9c8d34176060890ba50bc300d43ce01',
  userAgentURL: 'http://yourwebsite.com'
}).then(function(file){
  // file is the absolute path of the saved image
}).catch(function(error){
  // too bad
})

Disclaimer

Make a fair use of this, so do not pipe a gazillion request per seconds: Discogs limits them to 20 per minute per IP address, so _.throttle is your friend.