Midnight Manuscripts is a modern online book display that offers a decent UI/UX experience for exploring new instore books on display at Midnight Manuscripts, a blog for book enthusiasts, and information about the store. The site includes the following pages:
Homepage: Welcomes users with featured books and promotions.
Blogpage A collection of articles about books, authors, and literary trends.
Aboutpage Information about Midnight Manuscripts and its mission.
Should look like the image below:
Navigate to client directory:
cd client
Install Dependencies
npm installStart the development
npm start
Navigate to server directory
cd server
Install Dependencies
npm i chalk cors debug dotenv express mongodb mongoose morganStart the server
nodemon server.js
To send data using postman to newsletter collection within the web app.
http://localhost:5000/newsletter
{
"title": "New Blog Title",
"description": "This is the description of the new blog post",
"author": "Author Name",
"date": 2024-12-20T07:13:43.740+00:00
}
To send data using postman to blogData collection within the web app.
http://localhost:5000/feed
{
"name": "Alan Walker",
"email address": "adamtanweer4@gmail.com",
}
Data will be found in and located in collection test for development purposes.


