A RESTful API for wikipedia made with expressjs, mongoose and mongoDB-atlas to extract, add, delete, update the articles.
https://localhost:3000/articles
- title
- content
for route https://localhost:3000/articles -
- Get information for all the articles/documents.
- Add the document by entering the values of title and content.
- Delete all the articles.
for route https://localhost:3000/articles/{specific_article} -
- Get information by specifying the title in route.
- Update the whole document/article by specifying the title in route and enter the new values of title and content.
- Update part of the document/article by specifying the title in route and enter the new values of either title or content or both.
- Delete the unwanted article by specifying the title in route.
