1.0.4 • Published 3 years ago
node-template-converter v1.0.4
node-template-converter
Основные требования
Проект должен уметь заполнять данными шаблоны в формате docx, и конвертировать эти шаблоны в pdf формат.
Установка
npm i node-template-converter
or
yarn add node-template-converter
Использование
const {Templater} = require('node-template-converter');
// Create object
const t = new Templater('./f.docx','./d.docx');
// Create dictionart key:value
const fields = {
'w':'weak',
'n':'namesssss'
}
// fill in the template ./f.docx and save the file ./d.docx
t.fill(fields)
// convert ./d.docx in .pdf and save in folder./pdf
t.convert('./pdf');
const b = {
'w':'ewq',
'n':'qwe'
}
// set output path for docx file and create new pdf file
t.setOutDocxFilePath('./B.docx').fill(b).convert('./pdf');