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

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

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
```