https://github.com/amanvarshney01/weather-app
weather-app-demo
https://github.com/amanvarshney01/weather-app
Last synced: 4 days ago
JSON representation
weather-app-demo
- Host: GitHub
- URL: https://github.com/amanvarshney01/weather-app
- Owner: AmanVarshney01
- Created: 2025-04-12T09:28:57.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-04-12T09:29:06.000Z (6 months ago)
- Last Synced: 2025-05-10T09:14:52.360Z (5 months ago)
- Language: TypeScript
- Size: 88.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# weather-app
This project was created with [Better-T-Stack](https://github.com/AmanVarshney01/create-better-t-stack), a modern TypeScript stack that combines React, React Router, Hono, tRPC, and more.
## Features
- **TypeScript** - For type safety and improved developer experience
- **React Router** - Declarative routing for React
- **TailwindCSS** - Utility-first CSS for rapid UI development
- **shadcn/ui** - Reusable UI components
- **Hono** - Lightweight, performant server framework
- **tRPC** - End-to-end type-safe APIs
- **Node.js** - Runtime environment## Getting Started
First, install the dependencies:
```bash
npm install
```Then, run the development server:
```bash
npm run dev
```Open [http://localhost:5173](http://localhost:5173) in your browser to see the web application.
The API is running at [http://localhost:3000](http://localhost:3000).
## Project Structure
```
weather-app/
├── apps/
│ ├── web/ # Frontend application (React, React Router)
│ └── server/ # Backend API (Hono, tRPC)
```## Available Scripts
- `npm run dev`: Start both web and server in development mode
- `npm run build`: Build both web and server
- `npm run dev:web`: Start only the web application
- `npm run dev:server`: Start only the server
- `npm run check-types`: Check TypeScript types across all apps