In this lesson, you will learn about two route methods in Express that will help you create more efficient and modular routes.
Learning Objectives
- Understand how the app.all() route handler works to handle all HTTP request methods
- Implement app.all()
- Understand how the app.route() method works to create chainable route methods
- Implement app.route()
Intended Audience
- This lesson is intended for anyone who wants to learn about Express.
Prerequisites