4
4 Comments

What´s your stack when development speed is the main factor?

Hi,

I would like to know what your tech stacks of choices are when development speed is the main factor. Just curious and maybe I can discover and learn one or two things.

Thanks

on November 9, 2021
  1. 1

    If you are familiar with React, this is a great combination:

    • Next.js - Reactjs on steriods
    • Supabase - Backend-as-a-service so you won't have to worry about managing your own resources
    • Vercel - Hosting platform so you won't have to worry about any DevOps or scalibility issues

    P.s. - the reason I prefer Supabase over Firebase is because it is open-sourced and it uses a PostgreSQL database instead of a document DB.

  2. 1

    My speed stack is Vite + Vue 3 + Supabase + Netlify.

    • Vite - incredibly fast dev server and production builds
    • Vue - easy framework to learn (you'll need some grounding in HTML, CSS and JS)
    • Supabase - handles all the backend stuff and generates JS for you to access the API
    • Netlify - static hosting and automated deployments

    If you like React and want something more established than Supabase, I would go for Next + Firebase + Vercel

  3. 1

    I like to use React (Material ui or styled-components) for front-end, and ExpressJS/Mongo for back, I like Mongo coz it you don't need to run migrations, just create a model, and you are ready to go

  4. 2

    This comment was deleted 4 years ago

  5. 1

    This comment was deleted 5 years ago