Как предотвратить запрос избранного в Goolge chrome, когда я получаю 2 запроса?
const express= require('express');
const app=express();
const port=3000;
app.use((req , res , next)=>{
console.log("In the Middleware");
next();
});
app.use((req , res , next)=>{
console.log("In the Other Middleware");
res.send("<h1>Hello From Express</h1>");
});
app.listen(port,()=>{
console.log('App running at port '+port);
});
Что мне следует сделать, пожалуйста, помогите?