I have been working since yesterday to generate the report in Pdf format. I have gone through pdfkit module. And It seems pretty cool to use. My requirement is list the text with bullet point. I have tried like this
var doc = new PDFDocument();
doc.pipe(fs.createWriteStream('userReport.pdf'));
doc.fillColor("#B22222")
.fontSize(25)
.text('Users Count', 250,60)
.moveDown(0.5);
It is creating the text but I want the text with bullet. How to do this?