Basic express CRUD with MongoDB
BackgroundThis is a basic overview of how to do a CRUD process in expressJS with MongoDB.
Database.SQL database stores related data tables. NOSQL database stores json like field-value pairs. You can still have primary keys, index, and relationships. I wont talk too much about them here. I’ll do anot
...