const conversion = require('@groupdocs/groupdocs.conversion')

const licensePath = "GroupDocs.Search.lic";
const license = new conversion.License()
license.setLicense(licensePath);

// Load the input CSV file
const converter = new conversion.Converter("input.csv");

// Set the conversion options for PDF format
const options = new conversion.PdfConvertOptions();

// Save output PDF to disk
converter.convert("output.pdf", options);

console.log('The end of process.');
process.exit(0);