Node.js Quick Start Guide - Convert INPUT FORMAT to OUTPUT FORMAT
Below is a functional (copy and paste) code example of how to quickly get started with our conversion technology using our new Node.js module.npm install @accusoft/document-processing-helper --save
Example of usage [INPUT FORMAT to OUTPUT FORMAT]
const Helper = require('@accusoft/document-processing-helper');
async function main() {
const documentProcessingHelper = new Helper({
prizmDocServerBaseUrl: 'https://api.accusoft.com',
apiKey: 'YOUR_API_KEY'
});
// Initialize a conversion
const output = await documentProcessingHelper.convert({
input: 'input.[INPUT EXTENSION]',
outputFormat: '[OUTPUT EXTENSION]'
});
// Download the output and save the file
await output[0].saveToFile('output.[OUTPUT EXTENSION]');
}
main();
Not using Node.js? View our official documentation to use our advanced features with other languages.