Whats in the module : What is Express.js : Installing Express.js: To install the expressjs into your app , you have to run - npm install --save express Adding Middleware: example : const http = require ( 'http' ); const express = require ( 'express' ); const app = express (); app . use (( req , res , next ) => { console . log ( 'In the middleware!' ); next ();//Allow the request to continue to the next middleware in line }); app . use (( req , res , next ) => { console . log ( 'In another middleware!' ); }) const server = http . createServer ( app )//app is act As a valid request handler. //listening to a port for request server . listen ( 3000 ); console . log ( 'listening to port 3000' ); Handling Different Routes : const express = require ( 'ex...