N
N
nuclear_Jam2015-03-12 00:47:03
JavaScript
nuclear_Jam, 2015-03-12 00:47:03

Alternatives to MVC(Javascript)?

Here are the well-known MVC javascript frameworks. Are there any frameworks that implement design patterns that are different (alternative) from MCV?
Also interested in frameworks for node.js
If possible, indicate the name and links to the description, and a small comment-opinion. Thanks in advance)

Answer the question

In order to leave comments, you need to log in

4 answer(s)
O
OnYourLips, 2015-03-12
@OnYourLips

MVVM

S
Sergey, 2015-03-12
Protko @Fesor

MVC is an architecture, not a pattern. And this architecture is inherent in UI things. On the server, you just need to select separate layers, but this will not be pure MVC.
MVVM, MVP, etc. this is a further development of MVC. In fact, the more layers and the narrower their specialization, the less cohesiveness of the code. For example, in Angular, the connection between the controller and the view maintains a separate layer ($ scope) - roughly speaking, this is the ViewModel. Well, etc.
In a word ... it's better to write what you have already tried and why you are so dissatisfied with MVC and why are you even driven to this topic?

K
Kirill Saksin, 2015-03-12
@saksmt

  • MVVM (ModelView ViewModel)
  • MVP (Model View Presenter)
  • MVW (Model View Whatever) as Angular example

N
nuclear_Jam, 2015-03-12
@nuclear_Jam

the bottom line is that I want to make a comparison of js frameworks, I misunderstood about MVC and decided to take it as a criterion for comparison, but apparently it doesn’t work.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question