How to generate AngularJS app with Yeoman
To generate an skeleton AngularJS startup app with Yeomon, we use the npm install to install yeoman and bower first. See tutorial on npm. We now assume that you have yeoman and bower. 1. First...
read moreUsing “Controller as” syntax in AngularJS
Continuing directly from the last tutorial, we now use the “Controller as” syntax. This eliminate the $scope parameter passing and hence is another way to solve the minification issue...
read moreWhy Minification Breaks Angular
If we minify the js file of our last tutorial, it would break Angular because the minification process would re-write $scope as something else that is shorter). $scope needs to remain as...
read moreUsing Angular Module in a Javascript file
In the last tutorial, our AngularJS script code is at the bottom of the page. While it works, for larger applications we should use Angular modules in a separate Javascript file on its own. This...
read moreFree Angular Tutorials
AngularJS is becoming quite popular. To help you get started learning, here are some tutorials that I found on the internet. Many of which, I’ve used myself in my learning of...
read moreDisplaying Model in AngularJS
Continuing from our previous tutorial, we now need to code the adding of items to our shopping list. This is what we have so far… 1. In our controller function, we add an array to be our...
read moreUsing Batarang to Debug AngularJS
We will now continue with our AngularJS tutorial series. The code in this examples continues from a previous tutorial linked here. In between we installed Batarang. Today we will look at...
read moreInstalling Batarang for AngularJS
Batarang is a Chrome Extension for debugging AngularJS applications. Before we continue from our previous tutorial in the AngularJS tutorial series, we will show you how to install Batarang because...
read moreAngularJS Tutorial: Submitting form with ng-submit
This is part of the AngularJS tutorial series and follows right after the previous tutorial in which we demonstrated data-binding with an Angular template tag in our HTML view. We move further by...
read moreAll contents are opinions and are copyrighted and may contain display ads and ad links for which site may receive revenues from.
See Terms of Use and Privacy Policy.