From 1e92155e3f37190372b9c3e09a1b6380e8d7a037 Mon Sep 17 00:00:00 2001 From: tactonbishop Date: Sat, 6 Aug 2022 14:00:04 +0100 Subject: [PATCH] Last Sync: 2022-08-06 14:00:04 --- Databases/MongoDB/Introduction.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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