I'm currently defaulting to React + Next.js + Vercel for the FE, and Node.js + GraphQL + Dynamo + Lambda for the BE (All TypeScript).
I feel like there might be other stacks that people find better to quickly build stuff out, so just wanted to gauge that.
If it was ordinary web application software I wouldn’t disagree with your FE choice but would probably stick with the JVM on the back end unless I felt really good about the cloud native route (dynamo + lambda) for a db they say you can’t get fired for picking Postgres today but I am one of the few and the proud who likes arangodb.
Personally I have some interest in A.I. work which might involve PyTorch, Tensorflow or something like that. Also I am interested in embedded, for that I wish I could give up on C and just write assembly.
I worked at Amazon for 10 years. For any non Amazon project, I use Postgres. It’s a damn Swiss Army knife.
You don’t need GraphQL by default. It’s just another service. Client code generation is nice I guess. But unless you’re trying to join together 10 services and simplify discovery of schemes and APIs - in a large scale project - I’ve found it to be overkill.
On the front end, pick whatever. Even Angular 1x probably works fine still (dunno about any known major issues).
For back end, I’d use a JVM language, mainly because fine tuning it isn’t too bad, and there’s a credible library for just about anything. Also because that’s what I’m most comfortable with from my time at Amazon.
For any serious project, I’d avoid tying yourself to AWS or any specific cloud provider.
Like most 0 to 1 it depends on how little tech I can get away with in the tech stack.
For example https://cashflow.vc is csv files on gumroad. It was the minimum viable version to test if people would pay for it. Will likely upgrade it to a combination of nocode tools next (paytable is the frontrunner)
However for a Crypto related project im going up one level to Nextjs + Hasura as it gives me just enough control to meet all the user requirements but still gives me a development speed boost over if I grabbed nodejs, python or elixir for the backend.
The project calls for a consumer mobile app with an administrative web app.
The stack:
- Cloudformation all the things (front/back/deploy/routing/etc)
- Python Starlette rest api
- Dynamodb
- Cognito (not using their web ui)
- Ember.js for the web app
- React-native for the mobile app
Using whatever tech you're familiar with is the best bet to getting a project off the ground quickly in my opinion.
Plus your goto stack sounds fine.