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

bing-wallpaper-daily

v1.0.5

Published

Get daily Bing wallpaper with Node.js

Downloads

14

Readme

Bing 壁紙を取得

Bing 壁紙を取得は、Bing の毎日の壁紙を取得できるシンプルで軽量な Node.js モジュールです。Bing の画像アーカイブ API から壁紙画像、タイトル、開始日、終了日を取得します。

インストール

このパッケージをインストールするには、次のコマンドを実行します:

npm install fetch-bing-wallpaper

使い方

fetchBingWallpaper 関数を使用するには、最初にモジュールをインポートします:

const fetchBingWallpaper = require("fetch-bing-wallpaper");

次に、必要なオプションで関数を呼び出します:

(async () => {
  try {
    const wallpapers = await fetchBingWallpaper({
      market: "en-US",
      count: 1,
      format: "js",
      idx: 0,
      n: 1,
    });

    console.log(wallpapers);
  } catch (error) {
    console.error(error);
  }
})();

オプション

fetchBingWallpaper 関数は、以下のプロパティを持つオプションオブジェクトを受け入れます:

  • market:(文字列)Bing の壁紙を取得する市場(デフォルト:"en-US")。
  • count:(数値)取得する壁紙の数(デフォルト:1)。
  • format:(文字列)レスポンスデータの形式(デフォルト:"js")。
  • idx:(数値)壁紙のインデックス(デフォルト:0)。
  • n:(数値)取得する壁紙の数、ページングに使用されます(デフォルト:1)。

戻りデータ

関数は、以下のプロパティを持つ壁紙オブジェクトの配列を返します:

  • url:(文字列)壁紙画像の URL。
  • title:(文字列)壁紙のタイトル。
  • startdate:(文字列)壁紙の開始日。
  • enddate:(文字列)壁紙の終了日。

エラー処理

エラーが発生した場合、関数はエラーをスローし、何が間違っているかを説明します。エラーを適切に処理するために、try-catch ブロックを使用してください。

ライセンス

このモジュールは、**MIT ライセンス**でライセンスされています。