top | item 40105573

Ask HN: Stack to Put CSV Online

2 points| helij | 1 year ago | reply

Looking for some recommendations. I can do this with Django but it seems like a lot of baggage for a simple app.

I have a csv with 18 columns and 1600 rows. I would like to put this online so it's searchable, filterable. What's the best stack to do this with? Some JS framework? I don't mind loading the whole thing as text. The page should still load fast as 1600 rows and 18 columns is pretty light.

4 comments

order
[+] troydavis|1 year ago|reply
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.
[+] mattewong|1 year ago|reply
so true. sometimes the best solutions are not sexy
[+] nickf|1 year ago|reply
Try datatables.net - they have a sample 'server' (in PHP, plus more you can find on Github) that allow for dynamic search/filtering.