A Basic CRUD for Employee Registration
- ⚛️ React Js — A JavaScript library for building user interfaces
- 🚀 NodeJs With Express — A cross-platform, open-source server runtime for javascript
- 🧪 Jest — A JavaScript Testing Framework
- 📄 MongoDB — An open-source document-oriented database
- Clone this repo using
git clone git@github.com:vinisoaresr/Basic-CRUD.git - Move yourself to the appropriate directory:
cd Basic-CRUD - Execute MongoDB Server or run this command in your docker:
docker run -d --name mongodb -p 27017:27017 mongo:latest
- Move yourself to the backend folder:
cd backend - Create a custom
env.tsfile onbackend/src/main/config/and insert your MongoDB connection (Default ismongodb://localhost:27017) - Run
npm startto start the dev server
- Move yourself to the frontend folder:
cd frontend - Change in
.envfile onfrontend/src/aAPI_URL(default ishttp://localhost:3000) - Run
npm run devto start the web application
- Move backend test to a specific folder
- Ensure 100% tests coverage (now is >70% code coverage)
This project is licensed under the MIT License - see the LICENSE page for details.

