Getting started
A series of tutorials leading you through the steps of using Express and MongoDB to build the backend for a basic CRUD app.
Building a basic Express app runnng on a Node.js server that can serve a response to a GET request from a web browser.
View TutorialCreating a free MongoDB Atlas account and obtaining a connection string for use with your Express apps.
View TutorialUsing the provided connection string to connect an Express app to your account on MongoDB Atlas.
View TutorialDownloading and installing the free MongoDB Compass app for interacting with databases and collections.
View TutorialUsing the Compass app to create a database and collection in MongoDB Atlas, and to import data from a JSON file.
View TutorialBullding the backend of an app that uses Express routes to perform CRUD operations on data stored on MongoDB Atlas.
View TutorialRefactoring the Express routes code to move the route handler functions to a separate controllers file.
View TutorialAdding an .env file to hide your login details. And using middleware to serve static files such as images and stylesheets.
View Tutorial







