dgsw-meal
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

dgsw-meal

Daegu Software High School meal Parsing Library for node.js

License: MIT npm version

Table of Contents

  • Installation
  • Usage Example
  • Licence

Installation

you can install to use npm or yarn

npm install dgsw-meal
yarn install dgsw-meal

Usage Example

getMeal(year, month)

parameter type required description
year number true the year to search
month number true the month to search from 1 to 12
  • example
const dgswMeal = require('dgsw-meal'); // es5
import * as dgswMeal from 'dgsw-meal'; // es6
 
dgswMeal.getMeal(2020, 5).then(console.log);
/** console
  {
    "year": number,
    "month": number,
    "currentDay": number,
    "meal": {
      "1": string, // 1st menu
      "2": string,
      ...
      "31": "[조식]...[중식]...[석식]...",
    },
    "today": string,
  }
*/

Licence

MIT

Readme

Keywords

Package Sidebar

Install

npm i dgsw-meal

Weekly Downloads

3

Version

1.2.0

License

MIT

Unpacked Size

29.8 kB

Total Files

37

Last publish

Collaborators

  • devjin2194