Some test text!
Core / Guides / Node.js
Welcome to Apryse. Node.js for the Apryse SDK is supported on Windows, Linux and macOS. To get started, choose your preferred platform from the tabs below.
Windows
Linux
macOS
This guide will help you run Apryse samples and integrate a free trial of the Apryse SDK into Node.js projects on Windows. Your free trial includes unlimited trial usage and support from solution engineers.
Please note that all Apryse NodeJS libraries install native binaries and installing the package will install a system specific distribution.
npm i @pdftron/pdfnet-node
Apryse collects some data regarding your usage of the SDK for product improvement.
If you wish to continue without data collection, contact us and we will email you a no-tracking trial key for you to get started.
If your OS or Node.js version is not supported, the installation will fail.
npm i @pdftron/pdfnet-node-samples
node_modules/@pdftron/pdfnet-node-samples
foldernpm run test
You can also enter any individual sample folder to run them separately. For example, here's how to run the AddImageTest
sample:
cd samples/AddImageTest
node AddImageTest.js
You can now import the Apryse SDK by using the following in your Node.js code:
const { PDFNet } = require('@pdftron/pdfnet-node');
At the end of your code, don't forget to call PDFNet.shutdown()
, otherwise your Node.js program will keep hanging.
Here is an example for creating a blank pdf page:
const { PDFNet } = require('@pdftron/pdfnet-node'); // you may need to set up NODE_PATH environment variable to make this work.
const main = async () => {
const doc = await PDFNet.PDFDoc.create();
const page = await doc.pageCreate();
doc.pagePushBack(page);
doc.save('blank.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
};
// add your own license key as the second parameter, e.g. in place of 'YOUR_LICENSE_KEY'.
PDFNet.runWithCleanup(main, 'YOUR_LICENSE_KEY')
.catch(function (error) {
console.log('Error: ' + JSON.stringify(error));
})
.then(function () {
PDFNet.shutdown();
});
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales