ExpressJS print current url code example
Example 1: express get raw path
const url = require('url');
const express = require('express');
const app = express();
app.use((req, res, next) => {
const path = url.parse(req.url).path;
// Do something...
});
const port = 3000;
app.listen(port, console.log(`Listening on port ${port}.`));
Example 2: express get host url
const hostWithProtocol = req.protocol + '://' + req.get('host')