Live data from Hacker News

Show HN: CSVFiddle – Query CSV files with DuckDB in the browser

csvfiddle.io

11–14 of 14 posts

Re: Show HN: CSVFiddle – Query CSV files with DuckDB in the browser

#11

Hey HN, I made CSVFiddle because I wanted a quick way to query CSV files with SQL and share the results with other people. The app runs 100% in-browser, so the data you import and the queries you write are never sent to a web server. When you share the URL to a workspace, all of its queries and references to CSV files are just encoded in the URL fragment. In-browser querying is made possible by DuckDB-Wasm, which has…

Does it work with really large files? Like, >100mb or so. I was considering making something similar but with sqlite.js [1], but the problem with it is that it loads everything in memory, so I wasn't entirely sure how it will deal with larger workloads. [1]: https://sql.js.org/#/

This sounds like a workaround to your problem:

https://news.ycombinator.com/item?id=27016630

Re: Show HN: CSVFiddle – Query CSV files with DuckDB in the browser

#13

Not to discourage you or anything, but Observable seems to cover this without too much hassle: https://observablehq.com/@cmudig/introducing-sql-with-duckdb

I recently streamed firebase into duckDB for realtime exploratory analytics in the browser (on Observablehq)

https://observablehq.com/@tomlarkworthy/firebase-to-duckdb

Post reply on HN