TanStack

T

TanStack

TanStack is a community of passionate software engineers striving for high-quality, open-source software for web devs

Join

react-query-questions

solid-query-questions

table-questions

virtual-questions

router-questions

react-charts-questions

ranger-questions

vue-query-questions

svelte-query-questions

bling-questions

form-questions

angular-query-questions

start-questions

db-questions

start-showcase

router-showcase

📣-announcements

typical-coral
typical-coral6/8/2023

Framework neutral RPC

I'm trying to understand how I would use bling in a normal client side script. My intuition about it was that I write a function in a module and export it. It imports a typed remote call on the client and the actual implementation on the server. This approach, however, imports the imlementation on the client-side....
afraid-scarlet
afraid-scarlet4/19/2023

Server-Only Folders? Entire back end?

Does the concept of "server-only files" also apply to folders? My dream is to drag the entire back end folder into the front end for complete type safety - is it correct that if I just name the folder back.server$.end then the entire folder will be server only? And then is the idea to expose "entry/RPC functions" via server$ functions in a normal .ts file? And those functions can then call all the functions/variables in the back.server$.end folder?...
harsh-harlequin
harsh-harlequin4/7/2023

Bling + Electron

Hi, I'm wondering if anyone's thought about (or done some research) to use Bling for a nicer DX with Electron - it would be great DX if you could from the renderer safely and conveniently call the nodejs server (main) using just server$ (or main$), and perhaps vice versa. The architecture of an electron app is generally a nodejs process (main) and one or more renderer processes (chromium) which may or may not be headless. Traditionally Electron has only supported CJS modules, and often been bundled using webpack, but recent developments are bringing native ESM to Electron....