diff --git a/Databases/MongoDB/Introduction.md b/Databases/MongoDB/Introduction.md index e69de29..beb2fa6 100644 --- a/Databases/MongoDB/Introduction.md +++ b/Databases/MongoDB/Introduction.md @@ -0,0 +1,15 @@ +--- +tags: +- Databases +- mongo_db +--- + +# MongoDB: Introduction + +MongoDB is not a relational database system like SQL, instead it is document-based which means you do not neeed to design database tables and schema, you are simply storing data as JSON and there is no transformation of the data. + +Most of the notes on Mongo will introduce it within the context of Node.js backend. We will be sending Javascript objects and arrays to Mongo and returning them as JSON. + +## Mongoose + +Mongoose is a simple API for interacting with a Mongo database via Node. \ No newline at end of file