blog blog-REST-apis npm install npm run dev API end points POST-Create new blog http://localhost:4000/api/v1/blogs/create In body { blogTitle, blogBody } GET-Get all blogs http://localhost:4000/api/v1/blogs GET-Get single blog details http://localhost:4000/api/v1/blogs/:blogId In params { blogId (_id) } PATCH-Update Blog Details http://localhost:4000/api/v1/blogs/:blogId In params { blogId (_id) } In body { blogTitle, blogBody } PATCH-Create new comment http://localhost:4000/api/v1/blogs/comment/:blogId In params { blogId (_id) } In body { email, comment } PATCH-Reply for a comment http://localhost:4000/api/v1/blogs/:blogId/comment/:commentId/reply In params { blogId (_id), commentId } In body { email, reply }