https://github.com/nuhptr/react-router-v7-countries
Implementing new react-router v7 using react-router-app
https://github.com/nuhptr/react-router-v7-countries
react react-router
Last synced: about 1 month ago
JSON representation
Implementing new react-router v7 using react-router-app
- Host: GitHub
- URL: https://github.com/nuhptr/react-router-v7-countries
- Owner: nuhptr
- Created: 2025-03-12T17:28:07.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-03-12T17:29:09.000Z (about 1 month ago)
- Last Synced: 2025-03-12T18:33:56.486Z (about 1 month ago)
- Topics: react, react-router
- Language: TypeScript
- Homepage:
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to Countries Search App! 🎬
Build a React Router app with Bun and TailwindCSS. This app is a simple film search app that allows users to search for films and view details about each film.
---
Use this `npx create-react-router@latest [name-app]` to create a new React Router app.
## Features
- 🚀 Server-side rendering
- ⚡️ Hot Module Replacement (HMR)
- 📦 Asset bundling and optimization
- 🔄 Data loading and mutations
- 🔒 TypeScript by default
- 🎉 TailwindCSS for styling
- 📖 [React Router docs](https://reactrouter.com/)## Getting Started
### Installation
Install the dependencies:
```bash
bun install
```### Development
Start the development server with HMR:
```bash
bun dev
```Your application will be available at `http://localhost:5173`.
## Building for Production
Create a production build:
```bash
bun build
```## Deployment
### Docker Deployment
To build and run using Docker:
```bash
docker build -t my-app .# Run the container
docker run -p 3000:3000 my-app
```The containerized application can be deployed to any platform that supports Docker, including:
- AWS ECS
- Google Cloud Run
- Azure Container Apps
- Digital Ocean App Platform
- Fly.io
- Railway### DIY Deployment
If you're familiar with deploying Node applications, the built-in app server is production-ready.
Make sure to deploy the output of `bun build`
```
├── package.json
├── package-lock.json (or pnpm-lock.yaml, or bun.lockb)
├── build/
│ ├── client/ # Static assets
│ └── server/ # Server-side code
```## Styling
This template comes with [Tailwind CSS](https://tailwindcss.com/) already configured for a simple default starting experience. You can use whatever CSS framework you prefer.