FunctionPoint

Results 20 comments of FunctionPoint

I also have this error with the following example code: ``` // import fetch from "node-fetch"; function doIt() { fetch( 'http://www.boredapi.com/api' ) .then( response => response.text() ) .then( text =>...

PS here is a screen shot of the call stack for the above. ![stack](https://github.com/nodejs/undici/assets/9684694/c9d31ae0-2dbc-4189-ad8b-b11ae4d15311)

Did you try to use VSCode and in "Breakpoints" check the "Uncaught Exceptions" option? ![Uncaugt exceptions](https://github.com/nodejs/undici/assets/9684694/f3b52b73-1f8d-4f45-b456-f3f665a801bc) The error occurs in some finalization (cleanup) function / thread that is not needed...

Looking at the call stack, the last called Undici function is `fetchFinale`. The error occurs within the call in this line of the function: `response.body = { stream: response.body.stream.pipeThrough(transformStream) };`...

Thanks, this does indeed prevent a debugger break on this error. But it still needs to be _solved_, I should think. @mcollina : Did you try using VSCode already? The...

@yemreak Yes, when using "node-fetch", this error does not occur. This is my current workaround. (as stated above)

Checking further: The error only occurs when the query is at the root level. For example "localhost:3000/index.html?test" does not give an error and shows the website. That will be the...

Thanks for looking into it. The error report was for Pharo 13. I've just downoaded the latest Pharo 14 vm and image from here: https://files.pharo.org/image/140/ And can confirm that this...

Hmm, did you notice the example reproduction code already converts the directory string to a file reference? `... directory: 'web' asFileReference;` And also, the example succesfully serves other files from...

I also have this problem / request: My opensource NodeGui app runs fine on Windows and Linux. But when I try to run it on macOS Monterey on an Intel...