0.0.1 • Published 4 years ago

bingbg v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

BingBG

BingBG is a package to get the current day's bing wallpaper. That's basically it.

Usage

const getBackground = require("bingbg"); // It's a Promise, you can use async/await

getBackground().then(bg => {
    console.log("URL: " + bg.url);
    console.log("Time it took: " + bg.time);
});
(Note: Average time is about 500ms, so you will probably want to cache the result)