UNPKG

covidtracker

Version:

An Api wrapper to get information about the Novel Coronavirus.

9 lines (8 loc) 270 B
const fetch = require('node-fetch'); module.exports = async function() { try { return await fetch(`https://corona.lmao.ninja/v2/all`).then(r=>r.json()); } catch (e) { return { error: "API may be down, please try again later."} } }