How to Apply an IronPDF License Key in Node.js Projects
How to Get a License Key
Adding an IronPDF license key allows you to deploy your project live without restrictions or watermarks.
You can purchase an IronPDF license or sign up for a free 30-day trial license of IronPDF.
Apply Your License Key
Once you have installed IronPDF, configure IronPDF to use your license key by setting the licenseKey
property of its global configuration object. The code below shows you how to do this:
// Import the IronPdfGlobalConfig from the IronPDF package
import { IronPdfGlobalConfig } from "@ironsoftware/ironpdf";
// Apply your IronPDF license key
// Replace {YOUR-LICENSE-KEY-HERE} with the actual license key you received
IronPdfGlobalConfig.getConfig().licenseKey = "{YOUR-LICENSE-KEY-HERE}";
Questions or Need Support?
If you need additional support or have any inquiries, our team is here to assist you. Don't hesitate to contact our support team.
Frequently Asked Questions
How can I obtain a license key for my Node.js project?
You can obtain a license key by purchasing an IronPDF license or by signing up for a free 30-day trial on the IronPDF licensing page.
Why is it important to add a license key to my project?
Adding a license key allows you to deploy your Node.js project using IronPDF without any restrictions or watermarks, ensuring full functionality.
How do I configure my Node.js project with a license key?
To configure your project, set the licenseKey
property of the IronPDF global configuration object using: IronPdfGlobalConfig.getConfig().licenseKey = '{YOUR-LICENSE-KEY-HERE}';
What should I do with the placeholder '{YOUR-LICENSE-KEY-HERE}'?
Replace the placeholder {YOUR-LICENSE-KEY-HERE}
in your code with the actual license key you received upon purchase or trial registration.
How can I contact support if I encounter issues?
For support or inquiries, reach out to the IronPDF support team via the live chat support link on the website.
What are the consequences of not applying a license key?
Without a license key, your IronPDF project may experience restrictions or display watermarks, limiting its utility.
Is a trial version of IronPDF available for Node.js?
Yes, a free 30-day trial license of IronPDF is available, allowing you to test the software without commitment.
What is the process to integrate a license key into IronPDF for Node.js?
To integrate a license key, import IronPdfGlobalConfig
from the IronPDF package and set the licenseKey
property in the global configuration object with your license key.