An open API service indexing awesome lists of open source software.

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

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