I am learning Mongoose. As its documents said here "Everything in Mongoose starts with a Schema..." and the example:
var blogSchema = new Schema({
title: String,
author: String,
body: String,
comments: [{ body: String, date: Date }],
date: { type: Date, default: Date.now },
hidden: Boolean,
meta: {
votes: Number,
favs: Number
}
});
I can't help but wonder what is the benefit of using it (and mongo) then. Because when I use "traditional" SQL, of course, I will start with schema, define all the columns to design my table. So my blog table will look basically the same as that blogSchema. Then why should I use mongoose (and the mongo) in the first place?
---- updated based some comments I got -----
This question Why do we need, what advantages to use mongoose is related to my question but not the same. I need to use nosql because I need to have a loosely structured data system during the stages of rapid development. But the way mongoose provides to use Mongo feels like old sql way, then why bother nosql. But the first comment I got has shed some light on it.