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

himawari-bg

v2.0.2

Published

Set the latest image from Himawari 8 as your desktop background.

Readme

himawari-bg

Set the latest image from Himawari 8 as your desktop background.

npm build downloads

About

Himawari 8 is a geostationary weather satellite deployed by the Japan Meteorological Agency. It takes photographs of Earth every 10 minutes.

himawari-bg is a command line program that lets you set the latest image from the Himawari 8 geostationary satellite as your desktop background.

Install

Warning: requires :zap: magick :zap:

If you have homebrew installed, you can use that to quickly install imagemagick and graphicsmagick.

brew install imagemagick
brew install graphicsmagick

Once you have magick on your side, you can run himawari-bg anytime:

npx himawari-bg

Usage

Command Line

You can run himawari-bg on the command line with npx or via global install (npm i -g himawari-bg).

If you run himawari-bg with no arguments, it will download the latest image from Himawari-8 and set it as your desktop background.

:point_right: You have to set the background color of your desktop to black manually if you want it to look as cool as possible.

There are some options available if you'd like to go further:

Usage: himawari-bg [options]

    --outfile, -o         Location to save image. (default: ~/Pictures/himawari-images/$TIMESTAMP.jpg)
    --zoom, -z            The zoom level of the image. Can be 1-5. (default: 2)
    --date, -d            Time of the picture desired. Can also be "latest". (default: "latest")
    --infrared, -i        Capture picture on the infrared spectrum. (default: false)
    --parallel, -p        Parallelize downloads for increased speeds (can be CPU intensive). (default: true)
    --screen, -s          Screen to set the wallpaper on (macOS only). Options: "all", "main", screen index. (default: "main")
    --scale               Scaling method (macOS only). Options: "auto", "fill", "fit", "stretch", "center". (default: "fit")
    --version, -v         Show version information.
    --help, -h            Show help.

Node.js

himawari-bg can also be used programmatically as a node module:

npm install himawari-bg

Here is an example of how it works in node:

const himawariBG = require('himawari-bg')

himawariBG({
  /**
   * The location to save the resulting image.
   * Default: `~/Pictures/himawari-images/${Date.now()}.jpg`
   * @type {String}
   */
  outfile: '/path/to/output/earth.jpg',

  /**
   * The time of the picture desired. If you want to get the latest image, use 'latest'.
   * Default: 'latest'
   * @type {String|Date}
   */
  date: 'latest', // Or new Date() or a date string

  /**
   * The zoom level of the image. Can be 1-5 (default: 2)
   * Each zoom level requires more images to be downloaded and therefore stitched
   * together. Higher zoom yields a higher resolution image.
   * Default: 2
   * @type {Number}
   */
  zoom: 2,

  /**
   * If set to true, an image on the infrared light spectrum will be generated
   * Default: false
   * @type {Boolean}
   */
  infrared: false,

  /**
   * Screen to set the wallpaper on (macOS only)
   * Options: 'all', 'main', screen index
   * Default: 'main'
   * @type {String|Number}
   */
  screen: 'main',

  /**
   * Scaling method (macOS only)
   * Options: 'auto', 'fill', 'fit', 'stretch', 'center'
   * Default: 'fit'
   * @type {String|Number}
   */
  scale: 'fit'
})

All config settings are optional and have default values.

himawariBG returns a promise, so it can be used in an async workflow if needed.

const himawariBG = require('himawari-bg')

async function () {
  try {
    await himawariBG()
  } catch (err) {
    console.log(err)
  }
}

Acknowledgements

Thanks to celoyd for the inspiring glittering.blue and jakiestfu for creating himawari.js.

Addendum

It turns out himawari.js was inspired by this gist by MichaelPote which basically does the exact same thing as himawari-bg except in a Windows Powershell environment. So I unwittingly made something inspired by something that was inspired by something that does what I did. Internet! ¯\_(ツ)_/¯

Additional Resources

Here are some useful links if you're interested in learning more about the Himawari 8 satellite.

Official

Related Projects

History

Read about updates and changes to this project in the change log.

Contributing

Contributions welcome! Please read the contributing guidelines before getting started.

License

ISC