-
-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running puppeteer gatsby netlify function #96
Comments
That error means that your bin folder, with the chromium.br file, is somewhere else. I've not used netlify, so I'm unsure how the file system looks. Other packaging systems require something like externalDependencies: "@sparticuz/chromium" or something similar so it knows to keep this package. You could also use @sparticuz/chromium-min and download the pack separately. |
This is also my findings as I've done some debugging and the default paths used are not there at all so the bin folder is somewhere else indeed. I've found some "fixes" in this repo for netlify that ensures that the external package is kept but seems like it's not working anymore or I've got some issue with my implementation. I will continue the research and will probably make a doc page here when I find the solution , hopefully with the help of netlify support. |
I tried with
changed the node runtime to 18 without change
here is how the temp folder looks
|
ok so I probably managed to find the place for chromium.br file is by checking netlify docs for external node modules, i had to update
had to add
correct path is although this beringed me closer to the solution I still got an error:
which is the same as using so I guess this is working but still have issue with the libnss3.so wondering now what's the next step heh |
That means that the AWS package isn't being extracted. Can you get me the output of the |
in netlify the variable for the env is different (AWS_LAMBDA_JS_RUNTIME) but it's setup to nodejs:16.v13 |
I published 113.0.1 that will look for that env var and extract the aws pack as well. |
@Sparticuz I've tested both of my branches https://github.com/kdichev/gatsby-netlify-puppeteer-function/pull/1/files |
It checks that the |
unfortunately is still failing with the same error: logging this is truly: console.log(
process.env["AWS_LAMBDA_JS_RUNTIME"] &&
/^nodejs/.test(process.env["AWS_LAMBDA_JS_RUNTIME"]) === true
); here is my env: |
@Sparticuz you have an idea what else could be wrong? |
The libnss error in the past, has meant that the aws package isn't being extracted. The code I added checks for that netlify variable and extracts it. https://github.com/Sparticuz/chromium/blob/master/source/index.ts#L308 You can try to see if that promise is being pushed by adding in a console log inside that if block. |
Hi kdichev, I struggled with the same situation and was successful simple action, hope this can help you.
learned from kdichev
.../netlify/functions/chromium_test.ts
|
So, I managed to get it fixed. First thing was to disable WebGL with I hope this will save someone' 2 weeks of getting a PDF of a page =D p.s. if you are using nextjs, you need to update next config with e.q. creating pdf
....
...
Cudos to all guys here and external comments |
Hey, @nikme, how did you resolve the following error?
I am stuck here with the Gatsby Netlify function I am working on. |
@samlogan were you able to get past that issue? I'm stuck there too! please share what worked for you if you did, much appreciated! |
Hi I am trying to use gatsby netlify function with puppeteer but I am running in quite a few issues when my app is deployed to netlify. I’ve found a few topics with the issue but haven’t found the solution for this yet. Hence I am creating this issue.
when I try to trigger the puppeteer function I get this error:
Error when executing function “create-pdf.ts”: “Could not find Chrome (ver. 112.0.5615.121). This can occur if either 1. you did not perform an installation before running the script (e.g. npm install) or 2. your cache path is incorrectly configured (which is: /home/sbx_user1051/.cache/puppeteer). For (2), check out our guide on configuring puppeteer at https://pptr.dev/guides/configuration.”
I’ve added @sparticuz/chromium and suggested fixes from this repo but then I get this erorr:
Error when executing function “create-pdf.ts”: “The input directory “/var/task/.cache/bin” does not exist.”
I've made a simple reproduction repo: https://github.com/kdichev/gatsby-netlify-puppeteer-function/pull/1/files
But I've still haven't managed to make it work. I've also made a netlify support thread with all my findings
https://answers.netlify.com/t/running-puppeteer-gatsby-netlify-function/91453/1
I know that this could not be issue with sparticuz/chromium but I want to get more feedback if possible. If you feel that this is not for here feel free to close. Thanks a lot!
The text was updated successfully, but these errors were encountered: