Tom Lienard

Results 163 comments of Tom Lienard

Closing this issue as stale, feel free to re-open if needed.

The monorepo moved to pnpm a few months ago, and there's an option that might fix this issue: [`shared-workspace-lockfile`](https://pnpm.io/npmrc#shared-workspace-lockfile). It's `true` by default, but when set to `false` each package...

This is definitely something that will be supported in the future. Note that we'll probably support WebSocket first: #794 There are some discussions in WinterCG to land a common API...

Cloudflare just released their `connect()` API: https://blog.cloudflare.com/workers-tcp-socket-api-connect-databases/

That's probably right, yeah. We'll need to ship a binary somehow and determine if it should be run automatically or manually.

I'm not sure to understand what's not working, but looking at the code I can see that you're not specifying an addr/port to listen on: ```typescript await app.listen({ port: 8000...

Looking at the type definitions of Oak, `ctx.request.originalRequest` isn't a [native Web Request](https://developer.mozilla.org/en-US/docs/Web/API/Request) (which is what tRPC needs): ![Screenshot 2023-02-12 at 21 13 10](https://user-images.githubusercontent.com/43268759/218334745-412e37b5-a899-4a33-9dbd-3d1ba2f022d2.png) After digging a bit, using the...

You can't import Lagon from Node, as both the CLI and Runtime are written in Rust and we don't yet provide a binding. The easiest option might be to execute...

I think the best option would be to use [napi-rs](https://github.com/napi-rs/napi-rs). It's already used by big projects and works for every latest Node.js version.

Great suggestion, I like it. Note that WinterCG might in the future define a unified way to access environment variables across all runtimes: https://github.com/wintercg/environment-metadata/issues/1