to-pdf
v0.0.2
Published
convert your code to pdf from within node code .
Readme
toPDF
Convert your code into PDF from within your node code . PDF gets generated in the same folder as the code calling
it with the name print.pdf .
Install
npm install toPDFUsage
toPDF takes 3 parameters : filename , descriptions and author name .
Example :
- Printing the same code :
//test.js
var pdf = require('toPDF') ;
console.log("Tonight's gonna be a good night") ;
pdf.toPDF('test.js','Just a simple test file','Sarthak Munshi') ;- Printing another file :
//test.js
var pdf = require('toPDF') ;
console.log("Tonight's gonna be a good night") ;
pd.toPDF('package.json','Printing the JSON','Sarthak Munshi') ;Output


