Real Time Data using NestJs, ReactJs and Websockets
Live-Demo.mov
Manage employee and see real time data updates.
git clone https://github.com/Mickaz89/Employee-Attendance-System.git
Provide env variables (see .env.example)
cd client
npm install
npm start
Provide env variables (see .env.example)
Be sure to have mongo installed and running on your local machine
Create at least one User
- POST /user
export enum Status {
WORKING = 'working',
VACATION = 'vacation',
SICKNESS = 'sickness',
}
export class CreateUserDto {
@IsString()
name: string;
@IsEnum(Status)
status: Status;
}
cd server
npm install
npm run start:dev