You can implement a globaly scoped script that will add to every template additional data from a global setting.
const jsreport = require('jsreport-proxy') async function beforeRender (req, res) { const dataItem = await jsreport.documentStore.collection('data').findOne({ name: 'data-global'}) req.data.global = JSON.parse(dataItem.dataJson) }general forum