Промежуточное ПО внутри * app.use ('/', функция) выполняется каждый раз независимо от URL . Например: если клиентский запрос localhost: 8080 / about промежуточное программное обеспечение, присутствующее внутри app.use ('/', функция), также выполняется, так как путь запроса равен"/ о ».
настоящим я поделился кодами и также прокомментировал мои сомнения
let express = require('express');
let app = express();
app.get('/about', (req,res,next)=>{
console.info('this is from app.get()');
next(); /* using res.end() helps me but why get('/about') didn't works */
});
app.use('/',(req,res,next)=>{
console.info('this is from app.use() and it will be executed irrespective of the url');
next();
});
let port = app.listen(8080,(err)=>{
console.info('the server is started from port: ', port.address().port);
});