Another roadmap.sh project, this one is a RESTful API, made with vanilla node HTTP functions, using mongoDB. The instructions on how to use it are pretty much explained there
- clone the repo
- install dependencies
npm i- assuming you already have a mongodb account, create a cluster and create a
credentials.jsfile inside src directory with the following template:
const connString = `<your cluster-connection-string>`;
module.exports = connString;- start the application
npm startProgress:
- Create a new blog post
- Update an existing blog post
- Delete an existing blog post
- Get a single blog post
- Get all blog posts
- Filter blog posts by a search term
Complete!