Package Exports
- asposepdfcloud
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (asposepdfcloud) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Aspose.PDF Cloud
Aspose.PDF Cloud is a true REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of Pdf documents in the cloud.
Our Cloud SDKs are wrappers around REST API in various programming languages, allowing you to process documents in language of your choice quickly and easily, gaining all benefits of strong types and IDE highlights. This repository contains new generation SDKs for Aspose.PDF Cloud and examples.
These SDKs are now fully supported. If you have any questions, see any bugs or have enhancement request, feel free to reach out to us at Free Support Forums.
Installation
NPM
From the command line:
$ npm install asposepdfcloud --saveUsage
APIs of this SDK can be called as follows:
const { PdfApi } = require("asposepdfcloud");
let pdfApi = new PdfApi(AppSid, AppKey);
let pageNumber = 1;
let pdfDocName = "example.pdf";
let remoteFolder = "folderName";
pdfApi.getPageAnnotations(pdfDocName, pageNumber, null, remoteFolder)
.then((result) => {
console.log(result.response);
console.log(result.body);
});
Unit Tests
Aspose PDF SDK includes a suite of unit tests within the "test" subdirectory. These Unit Tests also serves as examples of how to use the Aspose PDF SDK.
Licensing
All Aspose.PDF Cloud SDKs are licensed under MIT License.