Jim Fisher

Results 118 comments of Jim Fisher

@BertholetDamien thanks for the info - I'll keep my current synchronous workaround, but will update if I experience problems. It could be that you have a better sample size than...

So I got this to work with [the following `build.zig`](https://github.com/ziglang/zig/issues/14660): ``` const std = @import("std"); pub fn build(b: *std.Build) void { const target = .{ .cpu_arch = .wasm32, .os_tag =...

@Luukdegram thank you! I'll attempt a PR to update the example.

10.15 == Catalina. 11.0 == Big Sur. Not sure which this refers to

Still broken on 1.0.27. Example of `node` connecting just fine: ``` $ node Welcome to Node.js v20.10.0. Type ".help" for more information. > const response = await fetch("http://localhost:11434/api/chat") undefined >...

Can confirm replacing `localhost` with `127.0.0.1` works. Although of course this is not a general workaround

Yes, you're right! If CORS is set up correctly then it shouldn't be a problem. But very many devs have over-permissive CORS in their "local" env. On Sat, Jun 8,...

> The examples are JS rather than TS where the strings continue to work just fine My assumption is that you want JS that is not just runtime-correct, but also...

Just found this, only to see I had the same problem a year ago ... FYI: https://github.com/egoist/esbuild-register seems to not have this problem, so I'm switching to that for now.