My first ever Fullstack Application. Build with React as Frontend-Component, MongoDB as a noSQL Database Component, and Node.Js for the Backend with an Express RESTful API.
- Create Todo
- Read Todos
- Update Todo - Mark as complete
- Delete Todo
- Node.js installed
- Accsess to a MongoDB Account and Database
$ git clone https://github.com/SlowMoschen/MERN-Todo-Application.git
Change directory to the server folder
$cd server
Install all Dependencies with "npm istall"
$ npm install
Change directory to the client folder
$cd ..\client
Again - Install all Dependencies with "npm install"
To run the App, you need to add a .env with your choosen Port and your accsess to your Testcluster on MongoDB, to the server folder.
Start the Dev-Server with "npm run dev" in both the server and client folder
$ npm run dev