Public
Like
orb
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v4View latest version
This project provides a web application to analyze NBA offensive rebounds totals across different seasons, showing year-over-year trends and statistics.
- Fetches NBA team statistics from multiple seasons
- Calculates total offensive rebounds per season
- Displays year-over-year comparison with percentage changes
- Interactive web interface with data visualization
├── backend/
│ ├── index.ts # Main Hono server
│ └── nba-api.ts # NBA data fetching logic
├── frontend/
│ ├── index.html # Main HTML template
│ ├── index.tsx # React frontend
│ └── style.css # Styling
└── shared/
└── types.ts # Shared TypeScript types
The application fetches NBA team statistics and aggregates offensive rebounds by season to show trends over time.
Uses the NBA Stats API to fetch team statistics for offensive rebounds analysis.