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

toriki

v0.5.0

Published

鳥貴族のメニューを取得するNode.jsライブラリ

Downloads

2

Readme

toriki

NPM Version build codecov License

Overview

鳥貴族のメニューを取得する Node.js ライブラリ

インストール

npm install toriki

使用方法

import { Toriki } from "toriki";

const toriki = new Toriki();

// 全てのメニューを取得
const menus = toriki.all();

// 条件を指定してメニューを取得
const filteredMenus = toriki.all({
  categories: ["貴族焼"],
});

// カテゴリを取得
const categories = toriki.categories();

// 特定のIDに対応するメニューを取得
const menu = toriki.getById(101);

// ランダムなメニューの組み合わせを取得
const randomMenus = toriki.random();

メソッド

all(params?: TorikiMenuParams): Menu[]

条件に合う全てのメニューの一覧を取得します。

引数

  • params(オプション): フィルタリング条件

レスポンス

  • Menu[]: メニューの配列

categories(): Category[]

全てのカテゴリを取得します。

レスポンス

  • Category[]: カテゴリの配列

getById(id: number): Menu | undefined

指定した ID に対応するメニューを取得します。

引数

  • id: メニューの ID

レスポンス

  • Menu: メニューオブジェクト。見つからない場合はundefined

random(params?: TorikiMenuParams, count: number = 10, allowDuplicates: boolean = true,): Menu[]

指定した総額に対応するランダムなメニューの組み合わせを取得します。

引数

  • params: フィルタリングの条件
  • count: 任意の個数 (デフォルト: 10)
  • allowDuplicates: 重複許容フラグ (デフォルト: true)

レスポンス

  • RandomMenus: ランダムなメニューの組み合わせオブジェクト。

型定義

TorikiMenuParams

| パラメータ | 型 | 説明 | | ------------------------- | -------- | -------------------------------- | | categories | string[] | カテゴリ名 | | name | string | メニュー名 | | caloriesMin | number | エネルギー (最小) | | caloriesMax | number | エネルギー (最大) | | saltMin | number | 食塩相当量 (最小) | | saltMax | number | 食塩相当量 (最大) | | excludedLimitedQuantity | boolean | 数量限定メニューを除外するフラグ | | excludeAlcohol | boolean | アルコール類を除外するフラグ |

Menu

| フィールド | 型 | 説明 | サンプル | | ----------- | ------- | ---------------- | -------------------------------------------------------------------------- | | id | number | メニュー ID | 101 | | name | string | メニュー名 | もも貴族焼(たれ) | | category | string | カテゴリ名 | 貴族焼 | | imageUrl | string | 画像 URL | https://torikizoku.co.jp/assets/uploads/2024/03/momo_kizokuyaki_tare.jpg | | calories | number | エネルギー(kcal) | 231 | | salt | number | 食塩相当量(g) | 1.9 | | isDrink | boolean | ドリンクフラグ | false | | isAlcohol | boolean | アルコールフラグ | false |

RandomMenus

| フィールド | 型 | 説明 | | ------------------- | ------ | -------------------------- | | menus | Menu[] | 組み合わせ内のメニュー一覧 | | totalSalt | number | 食塩相当量の総額 | | totalCalorie | number | エネルギーの総額 | | totalPriceWithTax | number | 税込価格の総額 |

Link

  • https://github.com/ryohidaka/torikizoku-menus

License

This project is licensed under the MIT License - see the LICENSE file for details.