Printeer
Printeer is a litttle yet robust print to PDF/PNG utility. It employs Puppeteer, which makes it simple to print the website to PDF. It may be used as a command-line utility or a library. It does not yet support any print options yet. They will, however, be added in the future.
It automatically detects the output format from the file extension. If the extension is .pdf
, it will print to PDF. If the extension is .png
, it will print to PNG. If the extension is anything else, it will print to PDF.
Run printeer
as a command-line utility
Printeer has a comprehensive and easy-to-use command-line interface. It can be used as a library as well.
Install printeer globally
npm install printeer -g
Print a webpage to PDF or PNG
Printeer automatically detects the output format from the file extension. If the extension is .pdf
, it will print to PDF. If the extension is .png
, it will print to PNG. If the extension is anything else, it will print to PDF.
printeer <url> <output.pdf>
printeer <url> <output.png>
Use printeer as a library
To use it as a library, install it locally and import it.
Install printeer locally:
npm install printeer
import printeer from 'printeer'
async function print() {
const resPDF = await printeer('https://google.com', 'google.pdf');
console.log("PDF saved to", resPDF);
const resPNG = await printeer('https://google.com', 'google.png');
console.log("PNG saved to", resPNG);
}
function main() {
print().
catch((e) => {
console.log("An error occurred while printing the webpage.")
console.error(e);
});
}
main();
Roadmap
Note: Master branch is not stable. Use the latest release instead.