Create line chart of UK confirmed corona virus cases

I was having trouble tracking the growth of corona virus cases in the UK.
Thankfully someone is publishing some daily COVID data as JSON. I downloaded
that data manually and plotted it using the chart.js library as a programming
exercise with Mimi.

Now I'm attempting to deploy to https://wpcarro.dev/covid-uk.

TODO(wpcarro): Prefer the live API data instead my soon-to-be-stale downloaded.
This commit is contained in:
William Carroll 2020-03-18 21:29:11 +00:00
parent 79b5fce68a
commit dd9788fa73
8 changed files with 51515 additions and 0 deletions

15
covid-uk/package.json Normal file
View file

@ -0,0 +1,15 @@
{
"name": "covid-uk",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"chart.js": "^2.9.3"
}
}