You do not need to go through these guys Google provides access to the URL to use the sheet as a database and also allows you to deploy Javascript and even host the site with AppScript (example https://script.google.com/macros/s/AKfycbzYt_aXBdQlnMM7idlVD... )
Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders
71–80 of 83 posts
Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders
#72Earlier quoted context omitted.
Cloud SQL costs gazillions, sheet is free (other than selling your data)
> Cloud SQL costs gazillions, WTF is "Cloud SQL"? I have a postgresql server running on a $5/m VPS that I add DBs to as and when I explore some new idea.
Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders
#73Don’t really get the purpose for this apart from throw away projects. For vibe coders is it really “hours” setting up a database these days? GCP cloud sql + drizzle ORM is minutes and actually scales unlike a spreadsheet, heck Claude can even write you a deployment script and run it over GCP CLI.
Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders
#74Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders
#75Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders
#76This is a great project, very cool, but it is actually insane to me that CRUD is so apparently hard that Google Sheets is the best solution
The attractiveness of a spreadsheet comes in the display and the charts, etc. For a serious database doing actual transactions, I'm not sure about the utility.
Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders
#77It's really good (no affiliation).
/* Uses: https://github.com/FCPS-TSSC/GQuery */
function exampleQuery1() { const gq = new GQuery(); const result = gq .from("Tags") .select(["ID","Name"]) .where((row) => row.ID == 12) // you can use > or < etc .get(); JSON.stringify(result, null, 2) }
Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders
#78Don’t really get the purpose for this apart from throw away projects. For vibe coders is it really “hours” setting up a database these days? GCP cloud sql + drizzle ORM is minutes and actually scales unlike a spreadsheet, heck Claude can even write you a deployment script and run it over GCP CLI.
Don't do this guy, cloudsql costs a lot.
db-f1-micro is about $10pm inc storage for something that just works and can scale, be shifted on prem etc. you can run all your vibe coded slop on one instance.
Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders
#79SQLite, SQLite + drizzle with WAL mode, push it to a VPS, do not waste your time on anything else :) Thank me when things become super easy! When things scale, SQLite will still be fine, will fit 99% of the vibe coders needs! When they don't then migrate to what ever!