TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Stack to Put CSV Online

2 pointsby helijabout 1 year ago
Looking for some recommendations. I can do this with Django but it seems like a lot of baggage for a simple app.<p>I have a csv with 18 columns and 1600 rows. I would like to put this online so it&#x27;s searchable, filterable. What&#x27;s the best stack to do this with? Some JS framework? I don&#x27;t mind loading the whole thing as text. The page should still load fast as 1600 rows and 18 columns is pretty light.

3 comments

surreabout 1 year ago
Check out Datasette by Simon Willison: <a href="https:&#x2F;&#x2F;docs.datasette.io&#x2F;en&#x2F;stable&#x2F;index.html" rel="nofollow">https:&#x2F;&#x2F;docs.datasette.io&#x2F;en&#x2F;stable&#x2F;index.html</a>
troydavisabout 1 year ago
How about a public Airtable or Google Sheets document? If you want a standalone site, embed that document in your static site. Visitors can view and do basic operations on your site, and you can link to the document on Airtable or Sheets so they can do more advanced analysis.
评论 #40134790 未加载
nickfabout 1 year ago
Try datatables.net - they have a sample &#x27;server&#x27; (in PHP, plus more you can find on Github) that allow for dynamic search&#x2F;filtering.