1.0.3 • Published 2 years ago

lolhuman-api v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

LoL Human Rest APIs

NPM version NPM Install Size NPM downloads

A simple Javascript module for website LoL Human Rest APIs.

Installation

Before install and using this module, please download and install Node.js.

$ npm install lolhuman-api@latest

Usage

const { LoLHuman } = require('lolhuman-api')
const lolhuman = new LoLHuman('YOUR_APIKEY')

lolhuman
    .jadwalSholat('yogyakarta')
    .then((res) => {
        console.log(res)
    })
    .catch((e) => {
        console.error(e.message)
    })