React Blog
This is a MERN stack based Blog website.
Running locally you need 3 terminals open: one for client, one for server, and another one for MongoDB back-end. Below are the steps:
- Install Node.js;
- Install MongoDB;
- git clone
- Go to directory
client, and runnpm install; - Go to directory
server, and runnpm install; - In one terminal, run
mongod; - In
serverdirectory, runnpm run dev; - In
clientdirectory, runnpm run start;