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.
Honestly, I’d advise against learning a js framework (at least at first).
Everything that you can do with a framework, you can also do with vanilla js (that’s code for plain js without any frameworks).
So why should you focus on the language first?
My advice: use a code editor that has good support for js (e.g. vscode), do a bunch of js tutorials, and make yourself the following projects in order:
When you get stuck in any of these projects, that just means you’ve got more js to learn.
Gotcha, I will make those projects, thank you!