UNPKG

groupdocs-merger-cloud

Version:
84 lines (61 loc) 3.07 kB
# GroupDocs.Merger Cloud Node.js SDK Node.js module for communicating with the GroupDocs.Merger Cloud API GroupDocs.Merger Cloud allows you to merge documents and manipulate document structure across wide range of supported document types - PDF, DOCX/DOC, PPTX/PPT, XLSX/XLS, VSDX/VSD, ODT, ODS, ODP, HTML, EPUB and many others. Merge several documents into one, split single document to multiple documents, reorder or replace document pages, change page orientation, manage document password and perform other manipulations with GroupDocs.Merger Cloud API. ## Installation A package `groupdocs-merger-cloud` is available at [npmjs.com](https://www.npmjs.com/package/groupdocs-merger-cloud). You can install it with: ```shell npm install groupdocs-merger-cloud ``` ## Getting Started Please follow the [installation](#installation) procedure and then run the following JavaScript code: ```js // load the module var GroupDocs = require('groupdocs-merger-cloud'); // get your appSid and appKey at https://dashboard.groupdocs.cloud (free registration is required). var appSid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"; var appKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; // construct MergerApi var infoApi = GroupDocs.InfoApi.fromKeys(appSid, appKey); // retrieve supported file-formats infoApi.getSupportedFileFormats() .then(function (response) { console.log("Supported file-formats:") response.formats.forEach(function (format) { console.log(format.fileFormat + " (" + format.extension + ")"); }); }) .catch(function (error) { console.log("Error: " + error.message) }); ``` Or compile and run same written in TypeScript: ```ts // load the module import { InfoApi } from "groupdocs-merger-cloud"; // get your appSid and appKey at https://dashboard.groupdocs.cloud (free registration is required). const appSid: string = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"; const appKey: string = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; // construct MergerApi const infoApi: InfoApi = InfoApi.fromKeys(appSid, appKey); // retrieve supported file-formats infoApi.getSupportedFileFormats() .then((result) => { console.log("Supported file-formats:"); result.formats.forEach((format) => { console.log(format.fileFormat + " (" + format.extension + ")"); }); }) .catch((error) => { console.log("Error: " + error.message); }); ``` ## Licensing GroupDocs.Merger Cloud Node.js SDK licensed under [MIT License](LICENSE). ## Resources + [**Website**](https://www.groupdocs.cloud) + [**Product Home**](https://products.groupdocs.cloud/merger) + [**Documentation**](https://docs.groupdocs.cloud/merger/) + [**Free Support Forum**](https://forum.groupdocs.cloud/c/merger) + [**Blog**](https://blog.groupdocs.cloud/category/merger) ## Contact Us Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.groupdocs.cloud/c/merger).