Я предполагаю, что у вас есть файл журнала, созданный Winston.Вы можете написать API, как показано ниже:
app.get('/logs', function (req, res, next) {
var filePath = "path to your log file";
res.sendFile(filePath, function (err) {
if (err) {
next(err);
} else {
console.log('Sent the logs..');
}
});
});