Live data from Hacker News

Viewing profile — bartlomieju

bartlomieju

HN member
Joined
Mon, Sep 03, 2018, 7:22 PM UTC
HN karma
277
Public activity
60 items

About bartlomieju

No profile information was provided.

Recent public activity

  1. comment
    Comment #48677317

    Okay I traced it, the problem is in `node_modules/vite/dist/node/cli.js`: ``` function checkNodeVersion(nodeVersion) { const major = parseInt(nodeVersion.split(".")[0], 10); const …

  2. comment
    Comment #48676567

    Sure, we also managed to close ~30 outstanding issues with this rewrite and set us up to reach ~90% node:http compatibility, so overall I consider it a success.

  3. comment
    Comment #48676516

    We tried to build `node:http` on top of Rust libraries (like Hyper) but we failed for a couple years. So earlier this year we decided to make it compatible (by using llhttp to have…

  4. comment
    Comment #48676345

    > Seems like the core of these issues was a Claude-coauthored PR: https://github.com/denoland/deno/pull/33208 Disclaimer: I'm the author of the linked PR. Using AI here is not real…

  5. comment
    Comment #48676282

    Gee, sorry to hear that. It's Bartek from the Deno team here. This is really a whack-a-mole. We currently present the latest stable Node.js version (26.3.0) so the error is not cor…

  6. comment
    Comment #48628442

    Bartek from Deno team hear. I'll love to hear what you feel is missing so we could improve `deno desktop` for more users.

  7. comment
    Comment #48628431

    Yes, you can do all that. You get a fully-fledged Deno program that can do all of this, _plus_ you get a frontend GUI app.

  8. comment
    Comment #48628427

    Bartek from the Deno team here. No promises yet, but we're looking into feasibility of it.

  9. comment
    Comment #48628419

    Sorry to hear that, could I ask you to file an issue in our bug tracker?

  10. comment
    Comment #48628409

    Thanks, I'll update the docs. When we wrote them a couple weeks back, Electrobun was announcing Linux only support.

  11. comment
    Comment #48628400

    Bartek from the Deno here. Nope, we do support enums OOTB.

  12. comment
    Comment #48268060

    Bartek from the Deno team here. Thanks for the feedback, I understand your frustration. > The worst of the changes is "lib.node included by default", if I'm writing Deno or web cod…

  13. comment
    Comment #48268039

    Bartek from the Deno team here. Thanks for the feedback. I assure you this is not a short-sighted change. This has been a problem since before Deno 1.0. We resorted to hacks like d…

  14. comment
    Comment #48268015

    Thanks for feedback, I opened a PR to implement linking functionality that seems more familiar to npm's strategy: https://github.com/denoland/deno/pull/34359

  15. comment
    Comment #39261167

    Bartek from the Deno team here - we are actively working on improving experience running NextJS projects in Deno.

  16. comment
    Comment #39261141

    Hi, Bartek from the Deno team here. We are actively looking into improving this situation and from initial investigations we were able to shave off roughly 40% of the baseline size…

  17. comment
    Comment #38367560

    Bartek from the Deno team here. You can also use `package.json` and bare specifiers with Deno. We also recently added `--unstable-byonm` flag (Bring Your Own Node Modules) that all…

  18. comment
    Comment #38367512

    Bartek from the Deno team here. We are working on making this possible with a flag in the upcoming release.

  19. comment
    Comment #36607883

    A couple months back we added an ability for Deno to run projects authored for Node.js directly. Eg. if you have a Vite app (or any other app really) with "package.json" and some "…

  20. comment
    Comment #36606696

    Bartek from the Deno team here. Sorry to hear that - we made great progress in making Deno drop-in replacement this year, but we certainly are not yet there 100%. I'd love to hear …

  21. comment
    Comment #36086046

    Just to clarify - we do have support for node_modules/ resolution (with all of its quirks and gotchas), otherwise we wouldn't be able to load npm packages. However we made a hard s…

  22. comment
    Comment #36085971

    Bartek from the Deno team here, let me clarify a few things. > for one the security model is incompatible with node APIs. All Node.js APIs are polyfilled using Deno APIs and as suc…

  23. comment
    Comment #36070151

    These modules can be included but currently there's no way to use them - that's because they need to be present on disk to load them as dynamic libraries. We're debating how to bes…

  24. comment
    Comment #36070130

    It's another issue, but it's close

  25. comment
    Comment #36070127

    Bartek from the Deno team here. We're currently missing polyfills for IPC module to be able to use `next dev` command.