The Client Of CS 6083 Final Project. Using React + Typescript + Mui
Before you begin, ensure you have met the following requirements:
- Node.js: This project uses Node.js v16.4.0. We recommend using NVM (Node Version Manager) for installing and managing Node.js versions.
Follow these steps to set up your project locally:
Clone the repository to your local machine:
If you haven't installed NVM yet, follow the instructions on the NVM GitHub page.
Once NVM is installed, install and use Node.js v16.4.0:
nvm install v16.4.0
nvm use v16.4.0
To verify the installation, run:
bashCopy code
nvm ls
You should see v16.4.0
as the selected version.
Install project dependencies using NPM:
npm install
This project requires TypeScript. If you haven't installed TypeScript globally, run:
npm install -g typescript
To verify TypeScript installation, run:
tsc --version
To start the application, run:
npm run start