| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
There was a problem hiding this comment.
I wonder if it still makes sense to link to an external gist, maybe we should copy the code over (not sure how it's licensed though it seems short enough to not fall under copyrightable code).
Sorry, something went wrong.
There was a problem hiding this comment.
I totally agree, an external gist to a personal github user feels off to me 😕
Sorry, something went wrong.
There was a problem hiding this comment.
IMO, We should create our own example derived from the sample and still link over to the gist for credit.
Sorry, something went wrong.
There was a problem hiding this comment.
I can definitely do that 🙂👍
Sorry, something went wrong.
There was a problem hiding this comment.
done 🙂 0c1abbe
Sorry, something went wrong.
There was a problem hiding this comment.
Ah yeah, one last question! 🙂
Do you think that the multi REPL section should also be moved under the new examples section? 🙂
Sorry, something went wrong.
The current examples presented at the bottom of the REPL doc have two issues: - they look like they're part of the section above (on how to run multiple REPL instances in the same process) but they are not - the alert informing readers not to use the second example in production environments can be wrongly interpreted as to refer to both examples The changes here address both these issues
Capitalize list items Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
| // Hack to thread stdin and stdout | ||
| // simultaneously in curl's single thread | ||
| const iv = setInterval(() => { | ||
| res.write(buf0); | ||
| }, 100); | ||
|
|
There was a problem hiding this comment.
Is this still needed? I can't see what difference it makes
Sorry, something went wrong.
There was a problem hiding this comment.
No I just tried the example without it (I'm on Ubuntu) and it does not seem necessary
I wasn't actually fully sure why this was needed and feared that removing might break the example under some conditions / on some platform? 🤷
However do think that quite likely this is not needed, so I'm totally happy removing it, we can always re-add it if in some cases it is right? 🙂
Sorry, something went wrong.
There was a problem hiding this comment.
Removed 🙂 a977fbe
(PS: thanks so much for the suggestion 🫶)
Sorry, something went wrong.
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
The current examples presented at the bottom of the REPL doc have two issues: - they look like they're part of the section above (on how to run multiple REPL instances in the same process) but they are not - the alert informing readers not to use the second example in production environments can be wrongly interpreted as to refer to both examples The changes here address both these issues PR-URL: #57762 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
The current examples presented at the bottom of the REPL doc have two issues: - they look like they're part of the section above (on how to run multiple REPL instances in the same process) but they are not - the alert informing readers not to use the second example in production environments can be wrongly interpreted as to refer to both examples The changes here address both these issues PR-URL: #57762 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
The current examples presented at the bottom of the REPL doc have two issues: - they look like they're part of the section above (on how to run multiple REPL instances in the same process) but they are not - the alert informing readers not to use the second example in production environments can be wrongly interpreted as to refer to both examples The changes here address both these issues PR-URL: #57762 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
The current examples presented at the bottom of the REPL doc have two issues: - they look like they're part of the section above (on how to run multiple REPL instances in the same process) but they are not - the alert informing readers not to use the second example in production environments can be wrongly interpreted as to refer to both examples The changes here address both these issues PR-URL: #57762 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
The current examples presented at the bottom of the REPL doc have two issues: - they look like they're part of the section above (on how to run multiple REPL instances in the same process) but they are not - the alert informing readers not to use the second example in production environments can be wrongly interpreted as to refer to both examples The changes here address both these issues PR-URL: #57762 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
The current examples presented at the bottom of the REPL doc have two issues: - they look like they're part of the section above (on how to run multiple REPL instances in the same process) but they are not - the alert informing readers not to use the second example in production environments can be wrongly interpreted as to refer to both examples The changes here address both these issues PR-URL: #57762 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
The current examples presented at the bottom of the REPL doc have two issues: - they look like they're part of the section above (on how to run multiple REPL instances in the same process) but they are not - the alert informing readers not to use the second example in production environments can be wrongly interpreted as to refer to both examples The changes here address both these issues PR-URL: #57762 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
| Back | FazBrowse Home | New Git URL |
This is pretty minor, but I just figured a little bit of polishing wouldn't hurt 🙂
The current examples presented at the bottom of the REPL doc have three issues which I am trying to address here:
they look like they're part of the section above (on how to run multiple REPL instances in the same process) but they are not
see the table of contents at the top of the REPL page:
they link to old gists with code that uses outdates JS syntax (e.g var) and deprecated utilities (e.g. new Buffer)
(so not something really ideal to present as an official example)
the alert informing readers not to use the second example in production environments can be wrongly interpreted as to refer to both examples
(this might be just me, but when I read the text there it really looked to me like the warning was referring to both examples and that This example was likely a typo and that These examples was supposed to be used)