Created an Open Source Project
Developed a backend system
Designed a Backend System
Wrote a New API
Built MERN website
MERN Stack
+4
I have created a MERN_Blogging Application using MERN Stack. In this app, you can create your account and publish the blogs written by you so that other people on the platform can read and can even comment or react to the post. Basically, this application is similar to dev.to platform.

1) Front-End - React + Redux

2) Back-End - Node.js(Express.js) & MongoDB

3) Project Outline

  1. Create Blog Schema Blog (String) Published (Bool) --> For users to see unpublished vs published post Comments (Object) User (Object)
  2. Create Comments Schema Comment (String) User (Object) Date
  3. Create User Schema: Name(String) Email (string) Password isAdmin (String)
  4. Signup/Logout/Login User
  5. View Blogs without sign in
  6. Write Blog with sign in
  7. Allow admin to determine which blogs to be published or not
  8. Allow other users to comment on the blog