app.get('/pdf/', function (req, res, next) {
var PDFDocument = require('pdfkit');
const doc = new PDFDocument();
var json = { list: ['Test', 'Array'], success: true }
doc.fontSize(15)
.fillColor('blue')
.text(JSON.stringify(json, null, 2), 100, 100)
// .link(100, 100, 160, 27, link);
doc.pipe(res);
doc.end();
});
Мы можем использовать pdfkit модуль узла и JSON.stringfy
Результат: