Express is by far the most popular micro framework for building backend applications with JavaScript.
This tutorial will guide you step by step, explaining how to build an express application from scratch. It’s targeted toward complete beginners but expects a few prerequisites (listed in the first exercise).
In the first part of the tutorial, we focus on really learning the core concepts and learning to build a very basic application quick and dirty. In later lessons, we’ll dive into more advanced but very common topics. You’ll learn to bring your code to the next level by writing higher-quality code.
🐷 Quick and Dirty - A Beginner's Guide
- 2. Basic Routing
- 3. REST & Dynamic Routing
- 4. Middlewares
- 5. Serving Static Files
- 6. Query Strings & Form Data
- 7. Response Types
- 8. HTML Response & Templating Basics
- 9. Control flow in EJS Templates
Controller & Requests Basics:
Views & Response Basics:
🚀 Next Level - Intermediate Guides
- 18. Validation & Sanitization