| I wonder if it might be worth considering not using a framework at all. As much as I'm not a huge jQuery fan, straight HTML with jQuery sounds like it would fit the bill if what you are doing is super simple. I could leave my recommendation like that, but I'm guessing that it's not all that useful to you. The bit that worries me is the "that even any noob UI Dev can easily get a SPA" part. Now if this is just because you are a noob and you are worried about getting in over your head, I'll cheer you on and tell you not to worry about it too much. Whatever you choose will take you longer than you think and be harder than you thought, but you will eventually figure it out. However, if you are trying to hire unskilled workers to do the job and are looking for a framework that will allow them to succeed no matter how crap they are... That's very unlikely to succeed no matter what framework you choose. The thing about programming is that the devil is in the details. Libraries and frameworks are about packing up common bits so that you can avoid repetitive tasks. They don't actually make things "easier" from the perspective of not needing to know what you are doing. Granted, some frameworks pave the way to help you get started, but eventually what you need to do will deviate from the tutorials and you will need to figure out what to do. Whoever is doing the work needs to have the kind of mindset that allows them to explore what they are doing and seek understanding. If they can do that (and are given the time/opportunity to do that), they can succeed. If not, then they simply will not succeed. Stuff will always be wonky if it even works at all. This is an order of magnitude more important than your choice of framework. Especially for something simple, it really doesn't matter what you choose (though I applaud the idea of trying to avoid unnecessary dependencies). What matters is if the person doing the work is willing and able to dig to the bottom of what they are doing and understand it. |