feat(web-client): implement a basic web client

This commit is contained in:
M. George Hansen 2022-05-08 23:45:18 -07:00
parent 991b82d750
commit 8b8f84ede1
Signed by: mgeorgehansen
SSH key fingerprint: SHA256:JlIGiQLPyQ2RHTH3a2oVlb20Xkh9Glr8DUF4YTXHJxM
13 changed files with 12506 additions and 9 deletions

17
web-client/README.md Normal file
View file

@ -0,0 +1,17 @@
# csv-to-json web client
A simple Preact SPA designed to showcase the csv-to-json server in action.
## Usage
Have a recent version of node (>=v14) and npm installed, and install any dependencies needed:
```sh
$> npm i
```
Ensure that you have `csv-to-json` running and listening on port 8000, then fire up the dev server and visit the url indicated in your browser (defaults to http://localhost:3000):
```sh
$> npm run dev
```