Discovering AngularJS
15 Apr 2013I write web applications and my usual tools are KnockoutJS and jQuery. But in the last day or so I’ve discovered AngularJS, a JavaScript framework by Google. I’m totally hooked. Here’s a simple example:
<input type="text" ng-model="yourName" placeholder="Enter a name here">
<h1>Hello !</h1>
Test drive it at JSFiddle
It’s just markup. Yeah, there’s some clever JavaScript behind it all but the expressiveness and lack of scripting is amazing. Angular makes simple stuff simple and hard stuff doable.
Here are a list of links you can visit to learn more about Angular. I’ve arranged them in order from introductory to more detailed. The first two are video links (4 and 12 minutes). The videos are what “Hooked me” and gave me incentive to learn more about the framework.
- Hello World
- Angular To-Do
- 3 Reasons to Choose AngularJS for Your Next Project
- AngularJS for jQuery Developers
- Fun with AngularJS!
- AngularJS Home Page
- AngularJS Cheat Sheet
- AngularJS Tips and Tricks
- Video Tutorial: AngularJS Fundamentals in 60-ish Minutes - Dan Wahlin - (Highly Recommend)
The API documentation is good. The tutorial application is more time-consuming and detailed than I would like.