You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug The code below will only run in node.js, and will crash both Deno and Bun.
Reproducing
import*aszmqfrom"zeromq";constaddr_ipc="ipc://C:/Users/nf/Desktop/myfilelol";constaddr=addr_ipc;asyncfunctionrun(){constsock=newzmq.Reply()awaitsock.bind(addr)console.log('bound to ipc socket');forawait(const[msg]ofsock){constj=fromBytes(msg);console.log(j.strField);awaitsock.send(j.strField)}}run();functionfromBytes(buffer){consts=buffer.toString();constj=JSON.parse(s);returnj;}
specs:
Bun
Bun v1.2.3 (8c4d3ff8) Windows x64
Windows v.win11_dt
CPU: sse42 avx avx2 avx512
Expected behavior Not to crash, and to produce the same output that node does, which is to bind correctly and print incoming messages.
Tested on
Edition Windows 11 Pro
Version 24H2
Installed on 1/8/2025
OS build 26100.2894
Serial number 0F00NUH220700C
Experience Windows Feature Experience Pack 1000.26100.36.0
Describe the bug The code below will only run in node.js, and will crash both Deno and Bun.
Reproducing
specs:
Bun
Deno
Node
Expected behavior Not to crash, and to produce the same output that node does, which is to bind correctly and print incoming messages.
Tested on
See also, the issues for Deno (denoland/deno#18345) and Bun (oven-sh/bun#17592), and potentially related issues here (#599)
The text was updated successfully, but these errors were encountered: