ποΈ Creating Routes
What's CRUD?
ποΈ π¦ Middleware
- Express Documentation
ποΈ π¦ Custom Middleware
app.use(express.json()); This one basically allows a client to send us JSON, basically.Without this, you would have to manually put together the bits yourself to make JSON work, and that would suck, so this does it for you.
ποΈ Errata - Nodemon Setup
Nodemon is a utility that monitors for any changes in your source and automatically restarts your server. It is a great tool for development, but it is not recommended for production.