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

## Summary Adds `signal` parameter to `NextjsOptions` to support React 19.2's `cacheSignal()` API for automatic request cancellation. ## Motivation React 19.2 introduced `cacheSignal()` which returns an `AbortSignal` that automatically aborts...

When I tried to deploy project based on the Convex NextJS template I got a TypeScript error in `src/values/value.ts` around line 213: ``` ./node_modules/convex/src/values/value.ts:213:7 Type error: Type 'ArrayBufferLike' is not...

Add "env set-from-file" command to CLI so that users can set multiple deployment environment variables in one command. ```bash # Before npx convex env set CLERK_SECRET_KEY sk_test... npx convex env...

I already manage my configuration on my own, using `direnv` and various configuration files. It would be great being able to stop the convex cli from writing to `.env.local` when...

Local/self-hosted deployments weren’t accessible through the MCP server; every tool call crashed with “Local backend isn’t running” or “Not Authorized,” as reported in #78. - ensure `_loadExistingDeploymentCredentialsForProject` skips BigBrain access...

…iew environments rather than always creating new ones ## Problem Currently `--preview-create` only creates new preview deployments and does not allow for updating a preview deployment. ## Solution Replaced `--preview-create`...

- Added the `ignore` package to dependencies. - Implemented loading and processing of `.convexignore` files in the bundler to skip specified files during the build process. - Updated entry point...

Ever since moving my project to a monorepo architecture, I've been getting `Type instantiation is excessively deep and possibly infinite.ts(2589)` I'm using `"convex": "^1.25.2"`

Steps to reproduce: 1. create a table of union of objects https://docs.convex.dev/database/schemas#unions. 2. update a row using .patch(), add extra fields like the default _id and _creationTime 3. transaction fails,...

Hey, Right now when updating a table, it looks like any extra fields causes the transaction to fail, AND to provide unrelated error message, which is very time consuming to...