convex-js icon indicating copy to clipboard operation
convex-js copied to clipboard

TypeScript/JavaScript client library for Convex

Results 68 convex-js issues
Sort by recently updated
recently updated
newest added

This is an edge case when self-hosting the convex backend. When hosting the backend on `https://domain.com/api/convex`, `npx convex dev` does not work. It fails on `Checking for index or schema...

### Description: Hello Convex team, I noticed that Convex depends on [email protected], which has a known security vulnerability ([GHSA-67mh-4wv8-2f99](https://github.com/advisories/GHSA-67mh-4wv8-2f99)). This vulnerability allows any website to send arbitrary requests to the...

maybe an addition to `ctx` would be best, something like ```ts const {ip, userAgent} = ctx.request; ```

Pretty much the title, if we could have computed values in the database level, it would make filtering much easier, Example: ```ts posts: defineTable({ ratings: v.array(v.number()) }, { computed: {...

### Bug The websocket connection can quietly drop without recovery. This happens often when a native app is brought from background after token has expired, but can happen outside of...

### External Packages Fail in Monorepos Due to Dependency Hoisting - Major DX Issue **Description** There's a significant issue when using Convex's `externalPackages` for node envs feature within monorepos. The...

I have this case that I think is applicable to a lot of people: Below is a table in my schema: ```ts messages: defineTable({ room: v.id("rooms"), replyOf: v.id("messages"), content: v.union(...

`npx convex dev -v --once` was showing a spinner with the message `Bundling modules for Convex's runtime...` and then ending without much indication of failure. I monkey-patched the code under...

The imports from 'convex/nextjs' have nothing to do with nextjs but more to do with ssr . can this location be renamed to say ``` import {preloadQuery} from 'convex/ssr' ```...

The Convex CLI intermittently hangs at the "Finding component definitions..." step. This occurs with both `convex dev` and `convex deploy`. Deleting `node_modules` and reinstalling temporarily fixes it, but the issue...