This project is a static website built with HTML, CSS, and JavaScript.
To run it locally with automatic reload, we recommend using live-server.
Make sure you have the following installed:
- Node.js and npm
You can install them on Fedora or Debian using:
sudo dnf install -y nodejs npmsudo apt update
sudo apt install -y nodejs npm⚙️ Installing live-server
After Node.js and npm are installed, install live-server globally:
sudo npm install -g live-serverVerify the installation with:
live-server --versioncd /path/to/your/projectStart the development server with:
live-server .Your default browser should open automatically at: http://127.0.0.1:8080
🛑 Stopping the Server
To stop live-server, press in the terminal:
CTRL + C
💡 Additional Notes live-server automatically detects changes in your files and reloads the page in real-time. If the browser doesn’t open automatically, you can manually navigate to the URL.