Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 436 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 436 Bytes

svgb

Generate svg to buffer with template.

Installation

npm install svgb

Example code

const svgb = require('svgb')
const path = require('path')


setImmediate(async () => {
    const svgFile = path.join(__dirname, 'number.svg')
    
    try {
        const artwork = await svgb.toBuffer(svgFile, {number: 1})
        console.log(artwork)
    } catch (e) {
        console.log("ERROR", e)
    }
})