Get Started

Everything you need to run the WebApp use cases.

Prerequisites

The great thing about this section is that you need almost nothing installed. Everything runs in the browser.

1. A Modern Browser

Chrome, Firefox, Edge, or Safari. That's it.

2. A Text Editor (optional)

If you want to modify the examples: VS Code, Cursor, Sublime Text, or any editor.

3. A Local Server (optional)

You can open the HTML files directly, but some browsers block fetch() from local files. A simple static server solves this:

Python
cd usecasegjd/WebApp
python -m http.server 8080
Node.js
npx serve usecasegjd/WebApp
WAMP / XAMPP / MAMP

Place the repo in your www folder and navigate to http://localhost/usecasegjd/WebApp/.

Libraries Used (via CDN)

No npm install needed. All libraries are loaded from CDN:

LibraryCDN
Bootstrap 5.3cdn.jsdelivr.net/npm/bootstrap@5.3.3
Highcharts 11code.highcharts.com/11

Next Steps

Head to API Authentication to set up your API key.