0.0.2 • Published 3 years ago

@alex.lopatkin/alex-lopatkin-test v0.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

BlazingDocs NodeJS client

High-performance document generation API. Generate documents and reports from СSV, JSON, XML with 99,9% uptime and 24/7 monitoring.

Installation

Using npm:

$ npm install blazingdocs

Using yarn:

$ yarn add blazingdocs

Integration basics

Setup

You can get your API Key at https://app.blazingdocs.com

const client = BlazingClient('API-KEY')

Getting account info

const account = await client.getAccountAsync()

Getting merge templates list

const templates = await client.getTemplatesAsync()

Getting usage info

const usage = await client.getUsageAsync()

Executing merge

const client = BlazingClient('API-KEY')

const data = readFileSync(__dirname + '/PO-Template-Array.json', 'utf8');

const parameters: MergeParameters = new MergeParameters();
parameters.sequence = true;

const readStream = createReadStream(__dirname + '/PO-Template-Array.docx');
const template: FormFile = new FormFile("PO-Template-Array.docx", readStream);

const operation = await client.mergeWithFile(data, "output.pdf", parameters, template)

Documentation

See more details here https://docs.blazingdocs.com