Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hansputera/ilovepdf-freedom

Use ilovepdf.com API without API KEY
https://github.com/hansputera/ilovepdf-freedom

ilovepdf ilovepdf-api pdf2image word2pdf word2pdf-converter

Last synced: 6 days ago
JSON representation

Use ilovepdf.com API without API KEY

Awesome Lists containing this project

README

        

## ILovePDF-Freedom

Use ilovepdf.com API without API Key

## TODO:

- ~~Add `Task.process()`, and `Task.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

```ts
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);
})();
```