Define and Handle Routes in ExpressJS Applications
Description
When you develop both a frontend or backend application, you want to define different logic flows that can be reached by using different paths. For this reason, when you choose a programming language and a framework to work with, one of the most important things is the routing. As the word describes, routing means to route the traffic to a certain target.
When defining routes, the resources you are exposing through a path will be reached by performing an HTTP request. Because of this, you always need to associate an HTTP method with a route. ExpressJS lets you define routing and routers in a very easy and efficient way, so you can manage all your paths very clearly.
In this lab, you will understand the basics of the ExpressJS routing system, you will define some routes, and you will create a router to better handle specific routes.
Learning Objectives
Upon completion of this beginner level lab, you will be able to:
- Understand the principles of routing in ExpressJS
- Define ExpressJS routes
- Create and use an ExpressJS router
Intended Audience
- Software engineers that want to deep dive into the ExpressJS routing system
- JavaScript developers that are curious about the ExpressJS routing system
Prerequisites
To get the most out of this lab, you should have basic knowledge of the ExpressJS framework. To achieve this, we suggest taking the following lab and courses: