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

interfacelift-downloader

v2.4.0

Published

InterfaceLIFT wallpaper auto-downloader.

Downloads

24

Readme

InterfaceLIFT Wallpaper Downloader

An InterfaceLIFT wallpaper auto-downloader and sync tool for node.js.

NPM version

Introduction

It takes way too long to download all of the great images in InterfaceLIFT's wallpaper collection by hand, and I'm too much of a cheap bastard to pay them for the privilege of using their bulk download service. So here is the leechers way of grabbing all of their wallpapers quickly, easily, and for free.

This software is licensed under the MIT license.

Install

Install this package globally via NPM by running the following command:

npm install -g interfacelift-downloader

You now have access to the interfacelift-downloader command.

Usage

interfacelift-downloader [resolution] [path] [download limit]

The interfacelift-downloader command accepts three arguments:

  • The resolution option needs to be the image resolution that you want to search for (e.g. 1920x1080).
  • The path is the path to save the downloaded files to. If specified this must be a path to a folder based on your current working directory (e.g. downloads, or ../wallpaper/1080) or the full path. (e.g. ~/downloads, or /Users/steven/downloads) If this option is omitted then files will be saved to your current working directory.
  • The download limit is the number of files to download. For example, if this option is set to 5, the 5 most recent images will be downloaded. If this option is omitted or set to 0, there is no limit and all the images are downloaded.

To save files to your current folder

Navigate to the path that you want to save the files in and execute the interfacelift-downloader command with the resolution that you want to search for as an argument. Here is an example:

interfacelift-downloader 1920x1080

This will tell the script to search for all images with a resolution of 1920x1080 pixels and save them to your current working directory. It will not download or overwrite any existing files.

To save files to a specific folder

Same as above but specify the path to the save directory from your current working directory as the third argument. For example:

interfacelift-downloader 1920x1080 downloads/1920x1080

This will tell the script to search for all images with a resolution of 1920x1080 pixels and save them to the downloads/1920x1080 directory. It will not download or overwrite any existing files.

You can also specify a full path.

interfacelift-downloader 1920x1080 ~/downloads/1920x1080
interfacelift-downloader 1920x1080 /Users/steven/downloads/1920x1080

To limit the total number of files downloaded

You can also limit the total number of images that the script will attempt to download. This is a great way to speed up the process and limit the size of your download. Simply pass the maximum number of images to download to the command after the download path. For example:

interfacelift-downloader 1920x1080 ~/downloads/1920x1080 15

That command will download up to a maximum of 15 images. Note that you must include the resolution and download path in the command for it to work.

Reporting Bugs

If you find any bugs, want to request a new feature, or have any questions then please feel free to open a new issue in this GitHub project.

Contributing

Please feel free to add features or fix bugs yourself! I welcome pull requests for this project. If you would like to submit a patch then simply fork this project, make your changes and submit a new pull request.

Change Log

v2.4.0 (Feb 5, 2022)

  • Added download retry functionality to handle intermittent disconnects.
  • Changed HTTP requests to use HTTPS.
  • Added android resolutions.
  • Added more widescreen monitor resolutions.
  • Added more iphone resolutions.
  • Added more ipad resolutions.

v2.3.0 (Jan 6, 2017)

  • Added download limit option.
  • Added iphone resolutions.
  • Added ipad resolutions.

v2.2.0 (Sep 19, 2015)

  • Added support for absolute paths.

v2.1.2 (Nov 16, 2014)

  • Added 21:9 monitor resolutions.
  • Added portrait mode monitor resolutions.
  • Added more widescreen monitor resolution.

v2.1.1 (Apr 27, 2014)

  • Added 2x2 monitor resolutions.

v2.1.0 (Mar 22, 2014)

  • Fixed unhandled exception thrown on random image redirects.
  • Fixed unhandled exception thrown on 404 errors.
  • Fixed resolution parameter being ignored when path is specified.
  • Argument errors will now cause the process to exit with a failure code.
  • Optimized how files are saved to disk.
  • Optimized call stack memory usage for image downloader.

v2.0.2 (Dec 14, 2013)

  • Added dual monitor resolutions.
  • Added triple monitor resolutions.
  • Added netbook monitor resolutions.
  • Added 1600x900 monitor resolution.

v2.0.1 (Mar 27, 2013)

  • Added destination path option to CLI.

v2.0.0 (Mar 20, 2013)

  • Removed http-agent dependency to support Node.js 0.10.0.
  • Added NPM support to the project.
  • The script will no longer create download folders.
  • Major refactor of the project to use modular code.

v1.0.0 (Feb 23, 2013)

  • Initial public release.