Installation
Npm:
npm i novelcovid
Yarn:
yarn add novelcovid
Usage
JavaScript:
const { NovelCovid } = require('novelcovid');
const track = new NovelCovid();
TypeScript:
import { NovelCovid } from 'novelcovid';
const track = new NovelCovid();
Methods
All
.all();
Yesterday
.yesterday(); // for ALL.
.yesterday('country name'); // For Specific Country
.yesterday(null, 'sort by'); // For Sorting
Countries
.countries(); // for ALL.
.countries('country name'); // For Specific Country
.countries(null, 'sort by'); // For Sorting
States
.states(); // For ALL states
Historical
.historical(); // For ALL
.historical(null, 'country name'); // Specific Country
.historical(null, 'country name', 'province name'); // Specific Country and Province
.historical(true); // All cases and deaths
Jhucsse
.jhucsse();
.jhucsee(true); // Gets all the counties
.jhucsee(true, 'countyname'); // for a countyname
countryName
.countryNames(); // All the country names which are effected.
Thanks!