A MERN application to set, update, delete and read tasks of a specific user.
- Express.js: For creating local server
- Node.js: For backend
- React: For frontend
- Redux: For interaction of frontend with database
- Mongo DB: Database
- JWT Authentication: For user authentication
- Latest version of Node.js installed on the machine
- A database on the Mongo Database
git clone https://github.com/ar-ag/REST-API
cd REST-API
npm install
- Create
.env
file in the root of the project -
Copy paste the following code in the .env file
NODE_ENV = development PORT = 5000 MONGO_URI = [Connection string for the database] JWT_SECRET = [A password]
- Run
npm run dev
in the root of the folder