3
6 Comments

Any other Indie Hackers using this stack?

https://twitter.com/wax_run/status/1431012994067091456
submitted this linkon August 26, 2021
  1. 2

    Just did the first deploy to Vercel and it couldn't have been easier. Supabase is amazing too. Definitely a learning curve, but a quick one.

    1. 2

      The learning curve compared to any other stack is tiny.

    2. 1

      What's the difference between using Supabase and Firebase (productivity-wise)? Currently using Firebase and find it's super simple to use.

      1. 1

        I haven't used Firebase a ton, but Supabase isn't likely to improve your productivity if you're already a Firebase pro.

        On of the big benefits for me is that I know SQL and Postgres really well and you can easily write raw SQL in Supabase to solve trickier problems.

        1. 1

          Gotcha makes sense.

  2. 1

    I'd be very happy to hear your thoughts on StaticBackend this would be the code shown in the example:

    async updateCard(card) {
      const res = await bkn.update(token, "cards", card.id, card);
      if (!res.ok) { console.error(res.content); return; }
      console.log(res.content) // <- updated card
    }