Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unllamas/zapcito-web
https://github.com/unllamas/zapcito-web
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/unllamas/zapcito-web
- Owner: unllamas
- License: mit
- Created: 2024-08-22T21:06:28.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-23T04:15:15.000Z (4 months ago)
- Last Synced: 2024-11-24T20:55:21.316Z (about 1 month ago)
- Language: TypeScript
- Homepage: https://zapcito-web.vercel.app
- Size: 785 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-starter-kit
[![MIT License](https://img.shields.io/github/license/alan2207/bulletproof-react)](https://github.com/unllamas/react-starter-kit/blob/main/LICENSE)
## Get Started
Prerequisites:
- Node v18+
- PNPM v8+To set up the app execute the following commands.
```bash
git clone https://github.com/unllamas/react-starter-kit.git
cd ...
```### Installation
```bash
pnpm install
```##### `pnpm dev`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.##### `pnpm build`
Builds the app for production to the `dist` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.See the section about [deployment](https://vitejs.dev/guide/static-deploy) for more information.
## 🗄️ Project Structure
Most of the code lives in the `src` folder and looks something like this:
```sh
src
├── app
│ └── index.(tsx)
│ └── provider.(tsx)
│ └── route.(tsx)
│ └── routes
│ └── home.(tsx)
│ └── not-found.(tsx)
├── components
│ └── ui
│ └── seo
│ └── errors
│ └── theme
├── features
│ └── navbar
│ └── hero
└── lib
└── utils.(tsx)
└── store.(tsx)
```