As a former developer, I have had countless of project ideas and choosing the tech it's going to be written in has always been a [unnecessary?] long topic, often leading to procrastinating and giving up on the idea.
I often hear (and claim) the argument that "one should use the stack they [the team] are the most comfortable with". While I strongly agree, I find my personal [developer] stack to be slightly outdated (as a system engineer, lots of Python, some Node with Express, and some irrelevant languages - C, scripting, ...).
Focusing only on the development side, what would be YOUR goto stack for very quick prototyping/MVP, say for a webapp/saas service?
Long term code support doesn't matter much here, the goal being able to bring ideas to life very quickly. Let's say 10k users max (or much less).
Some recommendations I've had:
- Node: Nest + Next.js - modern and popular stack with quick prototyping possibilities
- Elixir/Phoenix - attractive ecosystem, developer oriented
- PHP: Laravel + Livewire/Blade - very quick prototyping and social features
- Python: Django - because I'm already very comfortable with Python
And here you are, posted the question on HN and doing it all over again :)
The answer is the tech stack doesn't matter all that much.
All you care about is bringing ideas to life and python is versatile enough to do anything, so pick that.
It's whatever you are most comfortable in, and can move the quickest.
It's the stack where you don't have to re-learn how to do things you know are possible.
So with that in mind, it's probably not the latest and greatest technology (except if you happen to have been living and breathing it for the past few years). It's probably got some warts that you don't like but for which you are also very competent at overcoming.
If you are leading a team and need to decide that for them, try to find out which stack each member has gotten the most done in (in current or previous job), and average it across the team. It might be helpful to set expectation that this is not the most glorious technological project of their lives but that the goal is a rapid developement project with the goal to replace parts with something more robust once they get validated on the product/user side.
Blitz is built on top of Next.js and gives you postgres for free, in addition to auto-generating CRUD routes on schema changes. It's trying to be like Rails.
I've used Next.js with firebase for multiple prototypes.
Building a service? Go.
Need a light UI for the service? Go + Go html templates.
Need a command line tool? Go.
Building an interpreter or transpiler? Go.
That’s just me though. The reason that’s my answer is I’ve been writing a lot of Go lately.
Answers I might’ve given at another point in my career:
- Rust - I’d still reach for this but I find it a little slower to work in for prototyping.
- C#
- F#
- Ocaml
- D
- Pascal
As in
They give you a login screen
When you install an app 'starter kit'
Breeze -- the simplest -- in this example
Downside is you get stuck w vue and tailwindcss as defaults
curl -s https://laravel.build/example-app | bash
cd example-app
php artisan migrate
composer require laravel/breeze --dev
php artisan breeze:install
npm install
npm run dev
php artisan migrate
For the frontend I would suggest htmx[2]. You will anyway need to do some html, and htmx will save you the trouble of learning a JS framework.
0. https://flask.palletsprojects.com/en/1.1.x/
I prototyped an app with a MERN stack. Mongo, Express, React (CRA) and Node. By no means was the backend performant, and for this app, I had no reason to use document database instead of relational, but because I know how to write with mongoose, I chose mongodb.
Now that the prototype is done, I'm looking at other languages and frameworks for the backend such as Phoenix, Hyper.rs or asp.net core. If I want to be lazy, I'll just convert the mongo queries to Postgres and be done with it, and then move my CRA React App to Next.JS.
Usually I end up adding TypeScript into the mix, even for prototypes. However, I'm pretty comfy with the configuration side of that (webpack, etc) so it isn't a huge time sink. If it is going to be a huge time sink, you might try Deno instead. It has Express-like libraries of its own.
Is your project mostly database admin? The django admin can probably get you something useful fast. Is your app less database driven, or you need more flexibility? Flask is a good bet. Dealing with "live" data (chat apps, etc)? An asyncio project like quart or aiohttp might be best, coupled with a database that supports subscriptions/changefeeds. Alternatively flask with server-sent-events and redis might work better. If the project was mostly an API I'd likely use fastapi.
You can combine a lot of these servers in the same app with wsgi "application dispatching", although generally support for mixing asyncio frameworks and traditional frameworks isn't great.
Unfortunately there isn't a one size fits all solution right now, some frameworks will do some stuff better then others.
Reiterating "personal choice."
* Typescript + Vue on the front end (with nuxt) - NO SSR but nuxt precompiles the pages for me so I don't get the SEO hit. Front end can be served from any CDN basically for free.
* Node for the rest API with a custom, very simple and declarative framework that wraps HTTP, this only replies in JSON (also typescript)
* ArangoDB for all database needs. Has key value store, document store, graph store, so best of all worlds. I can use it like a RDBMS where it matters because graphs support relationships so no data duplication AND no need to normalize.
I can basically do anything with those, from quick prototypes, to a very low traffic website to serving millions (managed k8s, horizontal scaling comes into play then).
You're not going to rapidly prototype anything with Rust for your first 12 months working with the language, depending on your motivation and your ability to write missing parts for security middleware. However, once you've gone through that, you can be just as productive with an async Rust stack as you can with a Python one. Your prototype will also be ready for the "no time to refactor" mandate that makes it your production system. Actix-web framework and async libraries for postgres, redis, and rabbitmq are all mature and well-documented. I realize you said quick prototype/MVP, but all of this comes at little additional cost once you know how to adopt and integrate quickly.
I'm not a fan of PHP, I've never used any of the python frameworks, and while I can use Ruby on Rails it would usually not be my first choice - not unless I was building a simple CRUD application.
Perl gives me the amazing CGI::Application framework, a lot of libraries for integrations, and a standard approach to writing tests.
Golang is the new-hot, it's good for writing servers and services, also has a testing-centric development approach, good support for templates and a simpler deployment approach than most dynamic languages.
Still, my preferences tell you little except what I can/will use. The answer is usually to always pick the framework/think you're most familiar with OR the thing that you want to learn next.
One of the best things you can do is use Postgres as the backend.
For frontend I try to stick again to just HTML and Vanilla JS, if I know the frontend will be more complex then I go straight to Elm
Either way, I use python (FastAPI) and vue.js to keep the front-end and backend separate. That way, if you're working in a small team then responsibilities are easily separated and helps with scaling too, e.g. when you reach 10k users. There's also a great range of libraries available so prototyping is quick on both ends.
As for deployment, I use docker and a digital ocean droplet. That way, you can deploy easily as and when needed.
A very tempting alternative is Golang, where it's fast build time and light syntax makes it a good candidate for prototyping.
Also, I know many do not like it in this forum, but a document-oriented database such as MongoDb will save you a lot of time when dealing with json style documents.
Frontend: Here, I feel Angular can still deliver, once you have climbed the steep learning curve, the most important being to use a toolkit such as Bootstrap, which is a huge time-saver.
For backend (the api) I would go for c# or nodejs (maybe with nextjs). I might combine this with a serverless solution like Architect.
With this stack you can quickly build a API, connect it to bubble and show people your idea in a way that's actually working. Later on you can move all your API data off bubble and replace the front end with whatever you want.
I found it the cheapest and easiest way to build something very quickly.
Twilios: https://imgur.com/a/iACVPvU
Stripe: https://i.imgur.com/esOq0dB.png
ETC
Skip the backend unless you absolutely need it. Saves so much complexity, time and money.
-- Ruby: Roda + Sequel + SQLite (or any db)
- Frontend
-- Node: SvelteKit + ViteJS + TailwindCSS
- FullStack (monolithic)
-- Ruby: Roda + Sequel + ViteJS + TailwindCSS + SQLite (or any db)
Use framework7 with Vue for a mobile/webapp. For a more complicated site build it with django or php if you might want to hire cheaper devs in future.
Google Sheets allows you to see all your data immediately and setup takes 5 mins. Does it scale? No. This will ensure that you throw away your prototype and use your learnings during a rewrite in case the project becomes more successful.
Re: frontend, I like vue/nuxt plus Vuetify as a component framework
C# with ASP .NET Core (because i am most comfortable in .NET)
cloud: Azure (easy to use, has in built auth), and you can limit your credits, so you won't end up with crazy monthly bill like AWS
Why because at the moment I like F#.