Be the first user to complete this post

  • 0
Add to List

Understanding routers in express 4.0 - Visually

Routing in express 4.0 is much more intuitive and cleaner. We decided to put together a simple visualization of the steps involved in creating expressjs routers and route handlers to help you get started. routers in express 4.0 Of course, this assumes that you have already installed express 4.0 in your application. The concepts involved are pretty simple. Express lets you spawn routers using the Router() constructor (as seen in step 1). Think of each router as a place where you can specify handlers for a collection of sub-urls. These handlers may be for any of the HTTP methods. (as seen in step 2). Once you have specified the handlers you need, simply associate the router with a base-url, which is most likely to be relative to the root ( as seen in step 3). At runtime, express combines the base-url and the sub-url to determine the appropriate route handling function.



Also Read:

  1. Accessing the request body and session in nodejs using express
  2. Setup nginx with multi domain websites running on nodejs
  3. set the default node version using nvm
  4. Understanding nodejs module exports and require
  5. Creating a simple event emitter using nodejs