A simple realtime Blogging web application. https://bloggs-app.netlify.app/
- Nodejs
- Expressjs
- Reactjs
- MongoDB - database
- Socket.io - for realtime web applications
Backend/nodemon.json
{
"env": {
"MONGO_USER": "<MongoBD username>",
"MONGO_PASSWORD": "<MongoBD password>",
"MONGO_DEFAULT_DATABASE": "<Collection name>"
}
}
Don't forget to create the above file with this configuration.
$ git clone https://github.com/Prateek9144/Blog.git$ cd Backend
$ npm install$ cd Frontend
$ npm install$ cd Backend
$ npm start$ cd Frontend
$ npm startOpen a browser tab and write http://localhost:3000/ to see the website.