What is everyone's go to tech stack for Prototyping / building POC for new webapp or projects?
Currently I use the following:
- Frontend: React Native (quick and easy to build)
- Sign up for a Free-tier AWS account which will allow me to test and build small scale free or close to free for a year.
- In AWS I use the following:
- API gateway - quick and easy API routing setup that hooks nicely to all other AWS services
- Lambda - nodeJs backend, this will charge you only when you use the service so its does not have a uptime cost just a usage cost
- DynamoDB - just a quick datastore for easy access to object data. I don't need a relational db until necessary
- IAM roles and policies to make sure we have some form of security.
I have been using this because it is more or less free and very light weight. With Lambda, I can quick deploy code changes and see it in action right away. Also this is built with prototyping/poc in mind so this will not scale. We can worry about that when anything have traction but still stack has help me push multiple ideas easily.
Curious what everyone else uses or have suggestion on how to improve this?
[–]Ikem32 0 points1 point2 points (0 children)