Socket
Socket
Sign inDemoInstall

ebola-outbreak

Package Overview
Dependencies
3
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ebola-outbreak

Ebola outbreak data, projections and growth rate.


Version published
Maintainers
1
Install size
2.22 MB
Created

Readme

Source

Ebola Outbreak NPM Version wercker continuous integration testing npm dependencies

Powered by data obtained from the World Health Organization.

Install

npm install ebola-outbreak --save

Usage

var ebola = require('ebola-outbreak')

// Return all the confirmed cases
ebola.cases(function(err, cases){
  if (err) throw err
  console.log(cases)
})

// Return confirmed cases plus 5 projections:
ebola.project(5, function(err, projections){
  if (err) throw err
  console.log(projections)
})

// Return the latest growth rate:
ebola.rate(function(err, rate){
  if (err) throw err
  console.log(rate)
})

Todos

  • Add country specific data
  • Add different output types

Keywords

FAQs

Last updated on 04 Dec 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc