var shared = {}; var test = ""; shared.setLog = (text)=>{ test = text; } shared.log = ()=>{ console.log(test); } module.exports = shared;