Hello, I currently have just a little experience with asp.net and rest api’s, but most of my development is windows desktop apps. I’d like to learn a javascript framework (angular, react, vue, or next.js are some I’ve looked at) and I was wondering if anyone knows of a good tutorial for using one.

  • fabian@programming.dev
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 year ago

    I’d suggest the MDN tutorials on Web Development: https://developer.mozilla.org/en-US/docs/Learn as a starting point. They also cover several frameworks (React, Ember, Svelte, Vue, Angular) - but I’d only recommend a framework after you have a good grasp on JS as a language. For deepening your JS knowledge I can very much recommend the “You don’t know JS” books, they are free to read only: https://github.com/getify/You-Dont-Know-JS.

    Also: pick one framework, not all of them. The safest bet is probably react, I personally work with Angular. Anyway, for the framework of your choice you probably want to walk through their official tutorials.

    • Rei@programming.devOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 year ago

      Gotcha thank you, I know C++ and C# (C# is by far what I have the most experience in), how similar are those to JS? I know that JS is more functional where a function would have a class passed in rather than a class containing methods. What other differences should I expect?

      • fabian@programming.dev
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 year ago

        Javascript can be written both in a functional and an oo style, it doesn’t prescribe one over the other. The way inheritance works (prototype based) might be a source of confusion, because even though there is a class based syntax since 2015, it still has a prototype chain under the hood. Also the binding of the this pointer can work in unexpected ways. And things like scope and hoisting of variables are a bit different. Also there is no overloading of methods. It pays off quickly to read about the basic mechanics of the language if you want to do something with it.

        I’m working in a company where many developers have a strong Java background, the company adopted Typescript/Angular a few years ago for new projects and it got adopted by colleagues with long tenures quickly, the syntax similarities are so close that in my eyes it is more problematic when some expectations are translated over that just don’t hold, than that the colleagues struggeling with language itself, more difficult might be that standard library does not translate over in the same way the language primitives do.