Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 631 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 631 Bytes

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