DEV Community

Discussion on: Hi, I'm Michael. I'm a dad, work remote, developer now working as a designer, love full stack JavaScript + side projects. AMA!

Collapse
 
ben profile image
Ben Halpern

Why is Mongo so popular in JS land, is it because of the JSON storage or is it more happenstance?

Collapse
 
michael profile image
Michael Lee πŸ•

Not sure for the rest of JS land, but for me, I was attracted to it because SQL didn't exactly click in my mind the first few times I tried picking it up. Mongo's document like structure just made a lot of sense. JSON like structure in and structure out. I also found Mongo's operations to be easier to pick up than learning queries in SQL. I believe these sort of things are more appealing to a JavaScript developer since it maps well to things they already are familiar with such as objects and navigating key:value pairs using dot notations and whatnot.