hands-on lab

Define and Handle Routes in ExpressJS Applications

Difficulty: Beginner
Duration: Up to 45 minutes
Students: 147
Rating: 5/5
Get guided in a real environmentPractice with a step-by-step scenario in a real, provisioned environment.
Learn and validateUse validations to check your solutions every step of the way.
See resultsTrack your knowledge and monitor your progress.

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:

Covered topics

Lab steps

Understanding the ExpressJS Routing Principles
Connecting to the NodeJS Web IDE
Defining and Handling Routes With ExpressJS