Laurence Rowe
Laurence Rowe
I think it would be really useful to provide a snapshot facility for Workers. This would potentially allow for running individual requests in isolated workers efficiently. While I've not tried...
Adding `--inspect` to the deno command works. Using the example from: https://denoflare.dev/guides/serve run: ```sh deno run --inspect --unstable --allow-read --allow-net --allow-env https://raw.githubusercontent.com/skymethod/denoflare/v0.4.4/cli/cli.ts serve hello-local ``` Then go to chrome://inspect and...
@johnspurlock-skymethod looking at the sources while debugging a regular Deno worker it looks like the javascript code gets generated with inline source maps. I assume it would be possible to...
I've found it necessary to postMessage from worker to main to signal that the obj has been exposed. In the main module you can wrap worker construction in a Promise...
Cucumber/Behat/Behave all go with the docstring approach. I think there's a lot of value in maintaining compatibility with the cucumber gherkin standard, but changing existing parsing rules is not something...
I think the indentation sensitivity issue is worth addressing at some point, though I don't have a strong opinion on the best way of doing so. Out of interest, what...
For the `dict(**a, **{"b": 2})` case this seems to be a limitation of the __kwargtrans__ handling: ```py # testme.py a = {"a": 1} b = {"b": 2} c = dict(**a,...
I ended up with the following to strip out the unused vars and deprecated calls to lexer.has() but still check the result with typescript: In package.json my compile script is:...
I've been able to mostly replicate this with the following Dockerfile. However if I build `--with-openssl` (after installing openssl-devel) then it segfaults when running in Lambda. Not sure how to...
Updating to use openssl11 enables me to build / run successfully with ssl support: ```docker FROM public.ecr.aws/sam/build-nodejs14.x RUN yum install -y which openssl11-devel openssl11-static \ && curl -sO https://ftp.postgresql.org/pub/source/v14.1/postgresql-14.1.tar.bz2 \...