1.1.0 • Published 2 years ago

ilovepdf-freedom v1.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

ILovePDF-Freedom

Use ilovepdf.com API without API Key

TODO:

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