How to use RequireJS in AngularJS?

How much JavaScript experience does one need in order to use AngularJS?

  • For someone with just a basic understanding of JavaScript, is it a good idea to learn the rest of the language (and web development) while using AngularJS as the MVC framework? And what are some of the key JavaScript concepts that AngularJS use?

  • Answer:

    It depends: What do you mean by 'basic understanding'? How much time do you have? Are you talking about using it on a critical project? If you actually know what angular.js is, and you actually know what MVC is, my guess is you probably have a decent enough understanding. You might as well dive right on in. Set aside 4 hours and work through a tutorial. By the end of that time, you'll either be loving it or you'll realize you are way over your head. Unless of course, this is for an important or time sensitive project. Then you should probably hold off. Another route to go is to check out knockout.js. It's hard to say which would be easier for a beginner, but I tend to think knockout would. That was the first MVCish framework that I learned and it has served me well. Epilogue: I recently had the opportunity to work on two projects simultaneously, one that used Knockout and one that used Angular. My impressions are below. Keep in mind these are just opinions, not facts: Angular is more powerful, but certainly more complex. Knockout is probably easier to understand, simply because it's feature set is more focused. Angular is well suited as the foundational structure of a web app whereas Knockout is probably better if you are adding new functionality to an existing site that uses some other architecture. The documentation for each is different. I found the beginner level instruction for Angular to be harder to understand and harder to find. Knockout has a very good interactive tutorial built into their site, making it easier to learn quickly. The number and quality of more complex walk-throughs for advanced users seems to favor Angular, however. Angular is probably better for more data driven tasks and apps with highly relational data structures, whereas Knockout might be better if most of the data you are pulling is simple flat table data or feeds. I plan on using Angular for my next start-from-scratch app. I will continue to use Knockout if I am adding functionality to existing sites. I don't know if there's a way that these two would work together, of if that's even necessary.

Joseph Scala at Quora Visit the source

Was this solution helpful to you?

Other answers

For a new JS developer I think it matters able if you have OO GUI experience, or if you've used languages in the past with Dependency Injection. If you have, start with Angular. It uses opinionated, but much better pattern and organization of code then the last decade of Javascripts and jQuery forums will likely teach. Assuming you've programmed before just spend some time JS fiddling to get comfortable with the language quirks. Learn about closures (function scope), promises, jQuery selectors, dom manipulation operations, and a bit about passing arguments and minimification.

Joshua White

As a preface to this, I totally love Angular. I’ve built two startups where all our frontend code was Angular, and even started using it in marketing sites (not a great decision, but it seemed OK at the time).But recently I’ve started transitioning away from Angular. In fact, I’ve started transitioning away from frameworks in general.Ironically, I’m using less and less frameworks because I’m getting a better understanding of JavaScript.Because when I started out, I kinda sucked at it. Angular’s a pretty nice crutch—because it’s so opinionated—to stop you from making stupid architectural decisions.But when you know a bit more, when you really start to understand how code fits together, you’ll probably find yourself moving away from frameworks too.The real question I’d have is whether you need to start using frameworks right now? Do you need to build a web app? Is there a massive rush?If you can wait a while, I’d say get an awesome understanding of vanilla JavaScript first, then make an informed decision of your own.

Jake Peters

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.