I work on the front-end usually with Vue, and am in the process of building out a full-stack project.<p>I'm sure I don't have to explain the sheer amount of choices (analysis paralysis, yay!), but wanted to hear how other FE devs are doing it. Below are the options I've looked into:<p>- Supabase<p>- Nhost<p>- Xano<p>Would love to hear from anybody who has experience with the above choices. Any pros/cons of each? Doing research and wading through the BS is tough, especially with lots of conflicting information I'm coming across.<p>p.s - I know the best answer is "just choose one and build!", but I'm more curious to hear some anecdotes about what others are liking/disliking
My current decision tree is like that.<p>Web applications that can be broken into pages (displaying data) and forms: Laravel (default choice), Livewire<p>Do I need to have full interactivity on the frontend (Ex. Map, Media player,…): Svelte or Vue<p>Is it a project that I won't maintain: React (it's easier to find devs).<p>Do I have time to develop the backend for the SPA: Lumen, Express.js or a micro-framework in one of the languages I like (go,…)<p>No for the above: I used to go with Firebase. But I've look at others and they're pretty much the same thing.<p>When I was using Firebase, I've always coded defensively to avoid relying on its features. With React, I've built a layer of functions that interact with Firebase, then built my business logic out of hooks that use those functions. Moving to my own backend can be done with just reimplementing this layer. React-Query was my backup for the realtime capabilities of firestore.
Nhost user here.<p>Pros:<p>- The team is very approachable and responsive.<p>- Hasura is awesome! Especially the relationships. It took a while before it clicked but I don't see myself going back to joins. Also permissions are really powerful.<p>- Nhost stack allows you to do more complex stuff than with Supabase.<p>Cons:<p>- The documentation can sometimes be a bit unclear. Comparing to Supabase they can really improve on this.<p>- Deploying migrations can be a pain. Took a while before it clicked.<p>- Not a big community (yet). But they are growing.
Some initial findings I've seen are:<p>Supabase. Pros: affordable, production ready, and seems relatively quick to get up and running. Cons: Some have mentioned security concerns around how they handle auth, and potential complexity around having lots of application logic at the DB level<p>Nhost: Seems like a really great Supabase alternative, strong focus on graphQL. Con: they are new with a very small team which always concerns me in the case they need to suddenly shut down in the future<p>Xano. Pros: Probably the quickest to get up and running and delivering JSON to the frontend. Cons: full "no code" solution as opposed to "low code". They do advertise as being turing-complete and able to do anything code can do, but full no-code always gives me pause for a production application passed an MVP
I have a long running project with thousands of companies using it on a pretty basic stack:<p>React on the frontend<p>Node.js on the backend<p>Postgres as the database (managed by RDS)<p>Works pretty well!
Current? Hmm, Postgres is the best answer here, but I do have a fair amount of sqlite when there's only 1 write process. Lets also admit to the python pickled flat files lol.