Ian Macartney

Results 24 comments of Ian Macartney

It seems circleci needs to be configured for netlify somehow, based on a brief look at the failing tests. This seems related if someone has credentials to log in: https://github.com/cypress-io/netlify-plugin-cypress/blob/74a78d25a45ca017bb2d1b3e4c8a0b20f63657eb/CONTRIBUTING.md?plain=1#L16-L20...

Convex runs in the cloud automatically, free to start. We're putting out an open source version in a month or so that you can run locally. You can use docker...

Here's a hacky workaround: ``` const d = new DOMParser().parseFromString("", "text/html"); d.body = document.body.cloneNode(true) as HTMLBodyElement; ```

My use case is a small bundle that can run in a non-node environment (that doesn't depend on node-fetch, axios, or other libraries). I thought there would be other chat...

Here's the way I think about it: Supporting `index.ts` would be convenient, I agree. It looks a bit ugly/verbose, and it's hard to migrate from having `users.ts` to `/users` without...

Oops, just pushed: https://github.com/ianmacartney/code-organization-pattern Thanks for the input! On Mon, Jun 16, 2025 at 1:32 AM WKD ***@***.***> wrote: > *wkd-kapsule* left a comment (get-convex/convex-backend#102) > > > Thanks for...

The former is backwards compatible to today's guidance (exporting everything), and doesn't require a separate `export { myMutation }` on the module you may forget. Both should work though On...

If there was a way to bypass file-based routing and provide explicit routers (which could be nested), and you could register a whole file with something like `import * as...

Wow that looks like a great option. Thanks for the pointer

The repo has the in-memory implementations (pending tests if it's the right direction), but still lacks the ability to build locally for a cloud deploy (due to `@libsql/client` depending on...