|
|
|
|
|
by hardwaresofton
3274 days ago
|
|
At this point I'm sure I and others sound like a broken record, but if you're new and just jumping into frontend component-based frameworks, please don't start with React. There are simpler ways to get reasonably fast re-usable components on your project that introduce less accidental complexity. Carefully consider which thing you actually need: - A view library that uses components as the main building block (this usually means you already have other concerns like data modeling and routing taken care of) - A full SPA framework (which people often get from the react ecosystem, i.e. React + Reflux/Redux/etc + React-Router) Based on which one you need, there are other simpler (in the case of view libraries), and more coherent (in the case of full framework) choices. |
|