0.0.5 • Published 4 years ago

htmltopdfwithazure v0.0.5

Weekly downloads
24
License
MIT
Repository
github
Last release
4 years ago

htmlToPdfWithAzure

Node.js package for converting html to pdf with azure

v0.0.5

Installation

npm install htmlToPdfWithAzure --save

Getting started

1. Usage

Environment VariableRequired?Value
PROXYNoIt requires if you have proxy set up
PDF_SCOPE_URLYesName of the graph url i.e https://graph.microsoft.com/v1.0/
PDFFolderNameYesName of the folder name where you would like to save file
access_tokenYesYour Azure App Access Token
useridYesUserID of user whose account used to save files
htmlContentYesHtml content which you want to be converted in pdf

2.Prerequisites

1. User need to have a sharepoint account as the files converted will be saved on the sharepoint only
2. User need to have azure app access through which user will get their user id and access token

3. Usage

Method Name : htmlToPdfConvert - Used to upload file on share point which then be converted to pdf

var HtmlToPdfWithAzure = require('htmlToPdfWithAzure');

// All the enviornment variable mentioned will be set in .env file
const pdfFile = await HtmlToPdfWithAzure.htmlToPdfConvert(htmlContent, PDF_SCOPE_URL, userid, access_token, PDFFolderName);


if (!!pdfFile) {
    console.log("Get PDF URL ==>", pdfFile);
}

4. Usage Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

5. Usage Contributing

MIT

0.0.5

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.4

4 years ago

0.0.1

4 years ago

0.0.0

4 years ago