Tom Lienard
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):  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