const hershey = require('hersheytext'); const fs = require('fs'); const options = { font: 'ems_nixish', scale: 0.05, pos : { x: 0, y: 0 }, lineHeight: 1000 }; const header = ''; const data = hershey.renderTextSVG('Take a Look, if you Will.\nNew line', options); const footer = ''; fs.writeFileSync('test.svg', `${header}\n${data}\n${footer}`);