A Web Application for Filtering Things (specifically Countries).
You can run Thing Filterer locally either directly with node
or using docker
.
Ensure you have Node.js installed, then run...
npm start
It will listen on port 80
by default. You can press ctrl+c
to exit.
Ensure you have Docker installed, then run something like...
sudo docker build -t thingfilterer .
sudo docker run -it -p8888:80 thingfilterer
In this example, it will listen on port 8888
of your machine, bound to port
80
in the container. You can press ctrl+c
to exit.
Navigate to localhost:port
. You can type part of a country name to narrow down
the list, and click any country to see more details. The data is pulled from an
open API, supplemented with some additional data.