Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hansputera/ilovepdf-freedom
- Owner: hansputera
- Created: 2022-08-21T14:33:47.000Z (over 2 years ago)
- Default Branch: dev
- Last Pushed: 2022-10-08T07:06:40.000Z (about 2 years ago)
- Last Synced: 2024-10-16T23:01:08.842Z (2 months ago)
- Topics: ilovepdf, ilovepdf-api, pdf2image, word2pdf, word2pdf-converter
- Language: TypeScript
- Homepage:
- Size: 106 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
})();
```