1.3.2 • Published 5 years ago

jhucsse.covid v1.3.2

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

COVID-19 API Wrapper

jhucsse.covid wraps open API coronavirus-tracker-api by ExpDev07

API

  • All
var data = require('jhucsse.covid');

data.all()
    .then(console.log);
        //-> { confirmed: {…}, deaths: {…}, latest: {…}, recovered: {…} }
  • Confirmed, Deaths and Recovered
var data = require('jhucsse.covid');

//data.deaths(), data.recovered() same thing
data.confirmed()
    .then(console.log);
        //-> { last_updated: "2020-03-16T09:29:53.468127Z", latest: 167449, locations: […] }
  • getCountry({cc:'Country Code'})
var data = require('jhucsse.covid');

data.getCountry({cc:'CN'})
    .then(console.log);
        //-> { confirmed: {…}, deaths: {…}, recovered: {…} }
1.2.5

5 years ago

1.2.4

5 years ago

1.3.2

5 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.3

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago