trpc-sveltekit icon indicating copy to clipboard operation
trpc-sveltekit copied to clipboard

End-to-end typesafe APIs with tRPC.io for your SvelteKit applications.

Results 13 trpc-sveltekit issues
Sort by recently updated
recently updated
newest added
trafficstars

There's Svelte Query and React Query, now named TanStack Query, which will have a Svelte adapter in the future. The benefits of having a data-fetching library include implementations of caching,...

enhancement
help wanted
question

Since trpc-sveltekit allows procedure calls inside the `load` function, by passing `load`-`fetch` to the client, it would be nice to be able to invalidate the procedure calls like any other...

Hey awasome work, Could you give a shot at adding websockets to this project. I gave it a shot ```ts import { browser } from '$app/env'; import type { Router...

Just wanted to let you know that trpc-sveltekit works just fine with `adapter-cloudflare`, made an example repo without any special setup. https://github.com/valterkraemer/trpc-sveltekit-cloudflare-example

Doing the following on my Svelte page (Optimistic Updating): ```ts const api = trpc($page); const utils = api.createUtils(); const todos = utils.authed.todos; const addTodo = api.authed.todos.add.createMutation({ onMutate: async (newTodo) =>...

bug

**Describe the bug** When calling a procedure with particularly large input objects, since there is a max size for URLs and the input is passed via URL params, my call...

bug

Hey there @icflorescu, We've just updated our `resolveResponse`-function to be based on the Fetch API rather than our bastardization. I'm opening this issue mainly to let you know We have...

bug

Can the `createContext` argument of the `createTRPCHandle` be a non-async function? Because the `@typescript-eslint/require-await` eslint rule bothers me as I don't need this function to be async

**Describe the bug** The project has a dependency ([email protected]) that's currently under a high level vulnerability advisory **To Reproduce** `pnpm audit` **Expected behavior** No warning or errors **Screenshots** **Desktop (please...

bug