Introduction
References
https://www.youtube.com/watch?v=vjf774RKrLc
Introduction
MondoDB is an object based database. It can be seen as a big object of data. No relations between tables such as in SQL.
Mongoose makes connecting to the database easilier.
How to set up project
npm i express nodemon
// app.js
const express = require('express')
const app = express()
// Routes
app.get('/', (req, res) => {
app.send('We are on home')
})
app.listen(3000)
// Stare up the server
npm start