These keyboard shortcuts will work in most, if not all text editing places in macOS. (Form input, text editors, web browsers etc.) These keyboard shortcuts will also work on Windows (replace CMD with CTRL).
ALT + Left/Right
const express = require('express'); | |
const app = express(); | |
// app.use === generic, will be called for every request | |
app.use((req, res, next) => { | |
console.log(req.originalUrl, 'Time:', new Date()); | |
req.time = new Date(); | |
next(); | |
}); |