The best framework in 2021
Matvey Romanov

Matvey Romanov @ra1nbow1

About: Hello, world! I'm a professional self taught full-stack developer from Moscow. I truly love web-development and all that it concerns. Making websites is awesome. Follow me if you need some help

Location:
Moscow, Russia
Joined:
Jul 14, 2020

The best framework in 2021

Publish Date: Feb 27 '21
5 2

Hi there! In my humble opinion, frameworks get their popularity rapidly. So, what is the most critical and useful framework nowadays? Why do you think so?

As for me, Vue.js is the best framework for modern development. Firstly, it has a clear structure. Secondly, it has a lot of available additional libraries.

Comments 2 total

  • Jaakko
    JaakkoFeb 27, 2021

    For me it's React, but I think it's just a matter of preference.

    From my point of view, it is more logical to write JSX like:

    return (
      <div>
        {listItems.map((item) => <p>{item}</p>)}
      </div>
    )
    
    Enter fullscreen mode Exit fullscreen mode

    and it has felt so intuitive right from the beginning, compared to the more HTML -ish way of Vue:

    <div>
      <p v-for="item in listItems">{{ student }}</p>
    </div>
    
    Enter fullscreen mode Exit fullscreen mode
    • Richard
      RichardFeb 27, 2021

      If you really wanted to, Vue does support JSX 😁 you just need to set the lang attribute

Add comment