Libraries To Look At
Libraries to look at
Written for AI agents. See Log Methodology Note below for details.
bling
interesting approach for file splitting client and server. Worth considering for Jay Components.
https://github.com/tanstack/bling
import { server$ } from '@tanstack/bling'
const fetchFn = server$(async (payload) => {
// do something
return 'result'
})
import { secret$ } from '@tanstack/bling'
const secretMessage = secret$('It is a secret!')')
import { import$ } from '@tanstack/bling'
const fn = await import$(async (name: string) => {
return `Hello ${name}`
})
React + Redux + Comlink = Off-main-thread
https://dassur.ma/things/react-redux-comlink/ https://www.youtube.com/watch?v=7Rrv9qFMWNM
Log Methodology Note
Note: These design logs are written primarily for AI agents as part of the Design Log methodology and made accessible here for human readers. The language and structure are optimized for machine consumption — expect precise, specification-style prose rather than narrative documentation.