Local web app to visualize a company timeline and manage timeline events with YAML storage.
- Node.js
- Express
- Vanilla HTML/CSS/JS
- YAML data file (
js-yaml)
- Timeline page at
/- Loads events from YAML-backed API
- Shows events ordered by datetime
- Applies visual distinction by significance (
high,mid,low)
- Manage page at
/manage- Add event
- Update event
- Delete event
id(string)datetime(ISO datetime string)description(string)referenceLink(string, optional)significance(high|mid|low)
- Install dependencies:
npm install
- Start server:
npm start
- Open:
http://localhost:3000
- See
checkpoints/INDEX.mdand related files incheckpoints/.