mygemsSay hi

CSV tools that stay in your browser

Six things people need to do to a CSV, each of them free and each of them running inside the tab. The file is read off your disk by the browser and never sent anywhere — which is the part most online CSV tools get to skip explaining, because they upload it.

What “nothing is uploaded” means here

Your file is opened by the browser and parsed by a database engine running inside the page, so there is no request that carries it anywhere. The engine itself — DuckDB, compiled to WebAssembly — is downloaded from a public CDN the first time you open a file: that is program code arriving, not your data leaving.

Nothing is stored either. There is no account, no database and no recent-files list, so closing the tab is all the clearing up there is. If you want a file to still be there tomorrow, that is what the apps are for.