Joep Meindertsma

Results 339 comments of Joep Meindertsma

@Polleps suggested to use `pnpm link` combines with some minimal example project.

The non-e2e tests are already running in a node context, so basically the only thing I might still want to add is a test for the _compiled_ js code. Maybe...

Fixed it! At least, the `pnpm test` command Had to clear playwright's cache ``` rm -rf ~/Library/Caches/ms-playwright pnpx playwright install ``` Now I still have to get `pnpm test-query folder`...

Removing `type: module` from atomic-data-browser fixed it. Not really happy with this fix, but ok.

@Polleps didn't have the `Unknown file extension ".ts" ` issue.

I've opted for something like this: ```ts const defaultTimeout = 5000; /** Sends a GET message for some resource over websockets. */ export async function fetchWebSocket( client: WebSocket, subject: string,...

I'm having some performance doupts. Say on init, the user requests about 300 resources using websockets (e.g. when opening a Table or Chat or something). For _each_ incoming resource, the...

probably forgot to wrap it sometime ago during a refactor ```tsx } if (resource.error) { return ( {subject} ); } return (

Hi Alex, thanks for sharing your ideas! Could you perhaps explain a bit more about which features you think are needed in Data Browser? I expect this would be a...

Thanks for sharing, @iilyak ! I ended up [doing this](https://github.com/joepio/atomic-data-rust/blob/master/src-tauri/src/main.rs), which means spinning up a runtime in a non-blocking Tauri async runtime. Looks pretty similar!