ilovepdf-freedom
v1.1.0
Published
Use iLovePDF API without using an API Key
Downloads
3
Maintainers
Readme
ILovePDF-Freedom
Use ilovepdf.com API without API Key
TODO:
- ~~Add
Task.process()
, andTask.download()
methods~~ - Add signatures method on
ILovePDF
class (see https://developer.ilovepdf.com/docs/api-reference#create-signature)
Basic Usage:
For Task.process()
, see https://developer.ilovepdf.com/docs/api-reference#process
import {ILovePDF} from 'ilovepdf-freedom';
const instance = new ILovePDF();
(async () => {
const task = await instance.newTask('officepdf');
await task.addFileLocal('./file.docx', 'file_name');
const response = await task.process({});
console.log(response);
})();