git clone https://github.com/pdfcrowd/pdfcrowd-nodejs
cd pdfcrowd-nodejs
npm link
Quick Start
Below are
Node.js
examples to help you quickly get started with the API.
Explore our additional examples for more insights.
varpdfcrowd=require("pdfcrowd");// Create an API client instance.varclient=newpdfcrowd.PdfToPdfClient("demo","ce544b6ea52a5621fb9d55f8b542d14d");try{// Configure the conversion.client.addPdfFile("/path/to/cover.pdf");client.addPdfFile("/path/to/proposal.pdf");client.addPdfFile("/path/to/price.pdf");client.addPdfFile("/path/to/contact.pdf");}catch(why){// Report the error.console.error("Pdfcrowd Error: "+why);process.exit(1);}// Run the conversion and save the result to a file.client.convertToFile("offer.pdf",function(err,fileName){if(err)returnconsole.error("Pdfcrowd Error: "+err);console.log("Success: the file was created "+fileName);});
varpdfcrowd=require("pdfcrowd");varfs=require("fs");// Create an API client instance.varclient=newpdfcrowd.PdfToPdfClient("demo","ce544b6ea52a5621fb9d55f8b542d14d");try{// Configure the conversion.client.addPdfRawData(fs.readFileSync("/path/to/cover.pdf"));client.addPdfRawData(fs.readFileSync("/path/to/proposal.pdf"));client.addPdfRawData(fs.readFileSync("/path/to/price.pdf"));client.addPdfRawData(fs.readFileSync("/path/to/contact.pdf"));}catch(why){// Report the error.console.error("Pdfcrowd Error: "+why);process.exit(1);}// Run the conversion and save the result to a file.client.convertToFile("offer.pdf",function(err,fileName){if(err)returnconsole.error("Pdfcrowd Error: "+err);console.log("Success: the file was created "+fileName);});
varpdfcrowd=require("pdfcrowd");// Create an API client instance.varclient=newpdfcrowd.PdfToPdfClient("demo","ce544b6ea52a5621fb9d55f8b542d14d");try{// Configure the conversion.client.addPdfFile("/path/to/proposal.pdf");client.setPageWatermark("/path/to/watermark.pdf");}catch(why){// Report the error.console.error("Pdfcrowd Error: "+why);process.exit(1);}// Run the conversion and save the result to a file.client.convertToFile("company_offer.pdf",function(err,fileName){if(err)returnconsole.error("Pdfcrowd Error: "+err);console.log("Success: the file was created "+fileName);});
Authentication
To access the API, you will need to use your PDFCrowd username and API
key. For initial testing, you may use the following demo credentials without
registering:
Username:demo
API key:ce544b6ea52a5621fb9d55f8b542d14d
To obtain your personal API credentials, start a
free trial or purchase the
API license.
Error Handling
It is recommended that you implement error handling to catch errors the API
may return. Effective error handling is vital as it ensures application
stability and provides clearer diagnostics. See the example code below for
guidance on implementing error handling, and refer to this list of
status codes for more information.
try{// call the API }catch(why){// print the errorconsole.error("Pdfcrowd Error: "+why);// print the error codeconsole.error("Pdfcrowd Error Code: "+why.getCode());// print the error messageconsole.error("Pdfcrowd Error Message: "+why.getMessage());}
Troubleshooting
If you are receiving an error, refer to the
API Status Codes for more information.
Use
setDebugLog() and getDebugLogUrl()
to obtain detailed information about the conversion process, including
load errors, load times, browser console output, etc.