covid-my
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

covid-my

Unofficial client api for getting Covid-19 data from Official github repo of Ministry of Health of Malaysia

Sources of data:

Features

☑️ Promise-based
☑️ Intellisense (Atleast for VS Code)

Getting Started

Install using npm

npm install covid-my

Usage

Using promise

const covid = require('covid-my')

covid.deathsMalaysia()
  .then(res => console.log(res))
  .catch(err => console.error(err));

Using async/await

const covid = require('covid-my')

(async () => {
  try {
    const nationalDeaths = await covid.deathsMalaysia();
    console.log(nationalDeaths);
  } catch (err) {
    console.error(err);
  }
})();

Response

All responses are array of object. You need to loop through the responses to get a specific data. This might change in future since I am planning to add in-built functionality for it.

License

This project is licenced under the MIT License

BUT

The data fetched may be used per the terms of reference found in Appendix B of the Pekeliling Pelaksanaan Data Terbuka Bil.1/2015, accessible here:

https://www.data.gov.my/p/pekeliling-data-terbuka

Package Sidebar

Install

npm i covid-my

Weekly Downloads

1

Version

1.0.3

License

MIT

Unpacked Size

23.8 kB

Total Files

14

Last publish

Collaborators

  • adibzaini