Blogging Platform API is a project to create a simple RESTful API with basic CRUD operations for a personal blogging platform.
I used MongoDB and Express.js for this project.
Don't forget to change the connection string in the code.
const uri = "" // put your string connection here;
You need to create a search index on the title, content and category fields in MongoDB Atlas. ('default' is the name of the search index in the code)
git clone https://github.com/yeetdevDave/Blogging-Platform-API.git
cd Blogging-Platform-API
npm install
node index.js