Completed
- What is Express?
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Express Crash Course 2024 - From Setup to EJS Templates
Automatically move to the next video in the Classroom when playback concludes
- 1 - Intro & Slides
- 2 - What is Express?
- 3 - Opinionated vs Unopinionated
- 4 - Prerequisites
- 5 - What we'll cover
- 6 - Express Setup
- 7 - Basic Server
- 8 - --watch Flag & NPM Scripts
- 9 - res.sendFile Method
- 10 - Static Web Server
- 11 - Working with JSON
- 12 - Postman Utility
- 13 - Environment Variables .env
- 14 - Request Params req.params
- 15 - Query Strings req.query
- 16 - Setting Status Codes
- 17 - Multiple responses
- 18 - Route Files
- 19 - Using ES Modules
- 20 - Request Body Data
- 21 - POST Request
- 22 - PUT Request
- 23 - DELETE Request
- 24 - Middleware
- 25 - Custom Error Handler
- 26 - Catch All Error Middleware
- 27 - Colors Package
- 28 - Using Controllers
- 29 - __dirname Workaround
- 30 - Making Requests From Frontend
- 31 - Submit Form to API
- 32 - EJS Template Engine Setup
- 33 - Pass Data to Views
- 34 - Pass and Loop Over Arrays
- 35 - Template Partials