Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 632 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 632 Bytes

CS3800 Chat Application

Things that must be downloaded/updated to work:
Latest Version of Node
Yarn

Setup client:
cd client
yarn add socket.io-client
yarn add --dev typescript @types/react
yarn add @mui/material @emotion/react @emotion/styled

Run Client:
yarn dev

Setup Server:
cd server
yarn add express config socket.io
yarn add @types/express @types/node ts-node typescript @types/config -D

Run Server:
yarn dev