Node.js module for communicating with the GroupDocs.Conversion Cloud API
A package groupdocs-conversion-cloud
is available at npmjs.com. You can install it with:
npm install groupdocs-conversion-cloud
Please follow the installation procedure and then run the following JavaScript code:
// load the module
var GroupDocs = require('groupdocs-conversion-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 Api
var api = GroupDocs.InfoApi.fromKeys(appSid, appKey);
var request = new GroupDocs.GetSupportedConversionTypesRequest();
// retrieve supported conversion types
api.getSupportedConversionTypes(request)
.then(function (response) {
console.log("Supported file-formats:")
response.forEach(function (format) {
console.log(format.sourceFormat + ": [" + format.targetFormats.join(", ") + "]");
});
})
.catch(function (error) {
console.log("Error: " + error.message)
});
Or compile and run same written in TypeScript:
// load the module
import { INfoApi, GetSupportedConversionTypesRequest } from "groupdocs-conversion-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 Api
const api: InfoApi = InfoApi.fromKeys(appSid, appKey);
const request: GetSupportedConversionTypesRequest = new GetSupportedConversionTypesRequest();
// retrieve supported file-formats
api.getSupportedConversionTypes(request)
.then((result) => {
console.log("Supported file-formats:");
result.forEach((format) => {
console.log(format.sourceFormat + ": [" + format.targetFormats.join(", ") + "]");
});
})
.catch((error) => {
console.log("Error: " + error.message);
});
GroupDocs.Conversion Cloud Node.js SDK licensed under MIT License.
+Website +Product Home +Documentation +Free Support Forum +Blog
Your feedback is very important to us. Please feel free to contact us using our Support Forums.