Simulate FIFO parking flow with queues, plates, and live occupancy.
Vanilla HTML, CSS, and JavaScript. Queue-backed parking model.
Live Demo · GitHub Pages · Quick Start · Structure · License
ParkQueue is the queue counterpart to stack-based parking. Vehicles enter and leave following FIFO rules so you can compare queue discipline against LIFO garage behavior in the sibling ParkStacks project.
| Feature | Description |
|---|---|
| Queue parking | FIFO park/depart with capacity checks |
| Live board | Spot grid and occupancy counters |
| Plates | Manual entry or random plate helper |
| Logs | Arrival and departure movement stats |
| Theme toggle | Light and dark UI |
git clone https://github.com/cikeyz/park-queue.git
cd park-queue
python -m http.server 8000park-queue/
├── index.html
├── script.js
├── styles.css
├── LICENSE
├── README.md
└── .gitignore
MIT. See LICENSE.
Built for CMPE 201 (Data Structures and Algorithms), Polytechnic University of the Philippines, under Engr. Julian L. Lorico Jr. Final project case study. Published here as a standalone project.