|
|
|
|
|
by p3rry
3043 days ago
|
|
Absolutely, i will even double quote it,
"The thing about programming is that the devil is in the details".
Actually the problem is that in my workplace we keep on creating few mini apps where i get the html done by any ui dev which usually take 3-4 hours or something.
After that sometimes pluging it into a framework takes too much time, even though there are few api calls only.
I was wondering if there is any simple SPA framework available where i can just add a simple controller and few routes and voila app is ready. |
|
This is pretty much how frameworks come into being. No (sane) programmer sets out to build a general purpose framework. Instead they start building code for a particular purpose. The framework is well suited for that purpose. Over time they add more generality to it until it's useful by a wide group of people. But the important thing to understand is that it's always going to be a more or less awkward fit for anything other than the original purpose. There was a great quote I saw somewhere that Rails is the perfect tool if you want to build BandCamp.
It's kind of unfortunate because what you really want is something simple so that you don't need expensive talent to use it. But the only way to get the simple thing is if you have the expensive talent to build it. But that's programming...