node-html-to-image icon indicating copy to clipboard operation
node-html-to-image copied to clipboard

A Node.js module that generates images from HTML

Results 46 node-html-to-image issues
Sort by recently updated
recently updated
newest added

Is there any limit in the package? Or does this depend on my hardware?

Looks like the new version of puppeteer is throwing an Error: Unable to get browser page with Node-Html-To-Image version 4.0.0 ![image](https://github.com/frinyvonnick/node-html-to-image/assets/65868765/66f5b3ba-fce1-4150-9cea-f14f190c8a96) I fixed this issue by downloading [email protected] again

question

My code for generating image looks like ``` async generateImage(html: string) { return nodeHtmlToImage({ html: html.toString(), puppeteerArgs: { args: ['--no-sandbox', '--disable-setuid-sandbox'], executablePath: '/usr/bin/google-chrome', }, timeout: 50000 }); } ``` it...

![image](https://github.com/frinyvonnick/node-html-to-image/assets/65868765/956aa662-8b41-41e4-828d-f69c55072954) How would I fix this issue with v4.0.0 using Puppeteer v21.7.0?

question

Add the ability to log the logs of the page before rendering it. ```js page.on('pageerror', ({ message }) =>{ if(logger){ logger.error(`page | ${message}`) }else{ console.error(`page | ${message}`) } }) .on('response',...

Hello, I'm trying to declare a custom Handlebar Helper, but cannot find a way to use it in the nodeHtmlToImage() method, as the property does not exists in the Options...