An AngularJS single-page application for tracking cricket match scores in real time.
If you have VS Code, install the Live Server extension and click “Go Live” from index.html.
cd cricket-scoreboard
npx serve .
Open http://localhost:3000 in your browser.
cd cricket-scoreboard
python3 -m http.server 8080
Open http://localhost:8080 in your browser.
cricket-scoreboard/
├── index.html # Entry point
├── app.js # App bootstrap
├── app.module.js # Angular module definition
├── app.router.js # Client-side routing
├── controllers/ # Angular controllers
├── directives/ # Custom directives
├── factories/ # Shared factories/services
├── services/ # Business logic services
├── partials/ # HTML partials/views
├── modules/ # Feature modules
├── css/ # Stylesheets
├── js/ # JavaScript utilities
└── lib/ # Third-party libraries