• 1 Post
  • 7 Comments
Joined 1 year ago
cake
Cake day: July 1st, 2023

help-circle





  • lemmy_st3v3@lemmy.worldtoProgrammer Humor@lemmy.mlHow it feels like
    link
    fedilink
    arrow-up
    10
    arrow-down
    1
    ·
    9 months ago

    Angular is different from React, totally different. For one it’s a framework. React is a library. People tend to say Angular is harder to learn then React but I totally disagree with that. I personally found Angular really easy to learn, especially if you look at their documentation at https://angular.io/docs you just need to work through it, step by step. This is not the same with React, again my personal experience. In Angular you have common concepts like observables, subscriptions, dependency injection, separation of concern’s, and not to forget functional programming with RxJS. And the documentation that you can find in MDN about html, css, javascript is then also complimentary to it. Overal I found Angular to be a cleaner environment to develop in. And testing is so much more concise.

    Anyhow, don’t focus on one library/framework. I would even say learn the basics like what you can find on MDN, javascript, html, css, typescript. The rest is always framework/library specific. Let the job decide what you are going to learn first. You know programming, that’s great you will learn the stuff they use on the job and in your free hours ;) In my experience you will have to change anyways. For example I have worked at companies, government and private. Where one uses JSP!!!(in 2022, not it was not a government organization) Then Angular, then React.


  • lemmy_st3v3@lemmy.worldtoProgrammer Humor@lemmy.mlHow it feels like
    link
    fedilink
    arrow-up
    44
    arrow-down
    6
    ·
    9 months ago

    Well, I have worked with two of them React and Angular. Now working with React. And the further the project goes, things just get messy, and I mean really messy. The concept of everything should be a small function is in practice not true. No dependency injection(I know you can bolt another library on top of it, but really?). The testing is a pain, it gets harder and harder to test isolated functions. Custom tags, attributes that look like the standards that are documented at MDN but are not. And most info I can find online feels like elaborate propaganda. I mean there is just nothing against React to be found, really nothing. That’s just not possible in IT.