What differentiates front-end frameworks
1–10 of 256 posts
Re: What differentiates front-end frameworks
#2I disagree. Sure that's at the core of how a framework is written, but all the developers really care about are the interfaces. The user doesn't care at all unless it doesn't work or is annoying to use.
If your interfaces are dictated by the way the event loop is written, there's something wrong that needs to be decoupled. Events should be generic and interfaces should be arbitrary to what developers want.
Re: What differentiates front-end frameworks
#3Re: What differentiates front-end frameworks
#4> Instead, we’ll go directly to the crux of the main problem front-end frameworks set out to solve: change detection, meaning detecting changes to application state so that the UI can be updated accordingly. Change detection is the fundamental feature of front-end frameworks, and the framework authors’ solution to this one problem determines everything else about it: developer experience, user experience, API surface…
Re: What differentiates front-end frameworks
#5Re: What differentiates front-end frameworks
#6```
property int count: 0
Button { onClicked: { count--; } }
Text { text: count.toString(); }
Button { onClicked: { count--; } }
Button { onClicked: { incrementLater.start(); } }
Timer { id:incrementLater interval: 1000 onTriggered: { count++; } }
```
Better in so many ways.
Re: What differentiates front-end frameworks
#71) Provides a common externally defined abstraction, so that developers require less training and are more disposable.
2) Supplement skills of unskilled developers
The reason frameworks do not primarily solve for change detection, is because the browsers already provide that. Frameworks provide an additional solution riding on the browser's solution as an abstraction. Framework don't even really solve for a common set of standards either, because the browser provides that too. I really want to say that major frameworks provide for a more narrowly construed set of APIs and design approaches, but the APIs on modern frameworks are absolutely massive, so I cannot say that either.
So... frameworks are really just an abstraction to achieve a particular design approach, whether good or bad.
Re: What differentiates front-end frameworks
#8That is putting the cart before the horse. Frameworks solve for a fundamental business problem well before ever approaching any technical problems. A front-end framework is an architecture in a box, a pre-designed composition. There are a couple of business reasons for that: 1) Provides a common externally defined abstraction, so that developers require less training and are more disposable. 2) Supplement skills of u…
Re: What differentiates front-end frameworks
#9Re: What differentiates front-end frameworks
#10That is putting the cart before the horse. Frameworks solve for a fundamental business problem well before ever approaching any technical problems. A front-end framework is an architecture in a box, a pre-designed composition. There are a couple of business reasons for that: 1) Provides a common externally defined abstraction, so that developers require less training and are more disposable. 2) Supplement skills of u…
3) Saves you from having to rewrite dataflow and state management code with every project. (Saving time is a business factor.)