https://github.com/slowmoschen/mern-todo-application
My first ever Fullstack Todo-Application. Build with the MERN Stack.
https://github.com/slowmoschen/mern-todo-application
Last synced: 11 months ago
JSON representation
My first ever Fullstack Todo-Application. Build with the MERN Stack.
- Host: GitHub
- URL: https://github.com/slowmoschen/mern-todo-application
- Owner: SlowMoschen
- License: mit
- Created: 2023-09-12T21:01:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-16T14:01:05.000Z (over 2 years ago)
- Last Synced: 2025-01-23T12:23:02.085Z (over 1 year ago)
- Language: JavaScript
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo-Application build with MERN-Stack
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.
## Features
- Create Todo
- Read Todos
- Update Todo - Mark as complete
- Delete Todo
### Prerequisites
- Node.js installed
- Accsess to a MongoDB Account and Database
### How to get Started
### Clone Repository
```
$ git clone https://github.com/SlowMoschen/MERN-Todo-Application.git
```
#### Install Dependencies in "client" and "server" folder
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"
#### Add a .env file with your Port and MongoDB-URI
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 Dev-Server
Start the Dev-Server with "npm run dev" in both the server and client folder
```
$ npm run dev
```