🡠 Back to Index

mongoose

What it does

Mongoose provides a straight-forward, schema-based solution to model your application data. Using Mongoose, we were able to create multiple schema’s to store information surrounding things like our user and their artefacts. To read more about these schema’s, view their file pages (found below). From this data, we can then GET, PUT, POST, DELETE, and UPDATE as necessary, based on the actions of our users. The ability to model and create schema’s with mongoose was one of the key factors into going down the path of using MongoDB for our database.

Where we used it