https://github.com/arvind-4/mpmc-assignment
A Simple Vite + React App
https://github.com/arvind-4/mpmc-assignment
react reactjs tailwindcss typescript vite vitejs
Last synced: 6 months ago
JSON representation
A Simple Vite + React App
- Host: GitHub
- URL: https://github.com/arvind-4/mpmc-assignment
- Owner: arvind-4
- License: mit
- Created: 2022-11-26T14:36:06.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-09T14:42:34.000Z (9 months ago)
- Last Synced: 2025-05-15T19:11:30.249Z (8 months ago)
- Topics: react, reactjs, tailwindcss, typescript, vite, vitejs
- Language: TypeScript
- Homepage: https://mpmc-assignment.vercel.app
- Size: 879 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My MPMC Assignment
## Tech Stack:
- [React](https://reactjs.org/) - A JavaScript library for building user interfaces
- [Vite](https://vitejs.dev/) - Next Generation Frontend Tooling.
- [Typescript](https://www.typescriptlang.org/) - JavaScript with syntax for types.
- [Tailwind 3](https://tailwindcss.com/) - Rapidly build modern websites without ever leaving your HTML.
## Project Structure:
```bash
$PROJECT_ROOT
│
├── src # React Code.
│
├── public # Static Assets.
|
├── package.json # pnpm commands or npm commands
```
---
### Get the Code:
- Clone Repo
```bash
mkdir assignment
cd assignment
git clone https://github.com/arvind-4/mpmc-assignment.git .
```
- Install Dependencies
> Using `pnpm` for this project.
```bash
pnpm install
```
- Run Dev Server
```bash
pnpm dev
```
- Bundling for production
```bash
pnpm build
```