A Labor of Love
There is a lack of coding courses online that explain how things really work. You deserve a proper coding education. That's what this course is designed to do.
A deep dive into AngularJS. Don't learn by just imitating other's code. Learn by deeply understanding.
Most coding courses teach by imitation. The instructor writes some code, and you write the same code, and believe you've learned something...until you try to use your 'knowledge' in the real world. This course is about understanding AngularJS, the Javascript concepts behind it, and how it works. Then writing code, and building an application. That's the proper way to learn code. Don't imitate...understand.
There is a lack of coding courses online that explain how things really work. You deserve a proper coding education. That's what this course is designed to do.
Over 50 lectures and 7 hours of quality content. Learn at your leisure and at your own pace. Services, custom directives, single page applications and more.
The course is perfect for absolute beginners. However, even those with experience in AngularJS will benefit from this deep dive into the framework.
Learn on the go. Watch the course on your phone or tablet using the Udemy app.
Lectures come with both 'starter' and 'finished' code, so you can easily setup to follow the lecture and compare your code to the finished code from the lecture.
Ask questions in the course discussion boards. The instructor answers all questions personally, usually within 24 hours.
Learn custom services and depndency injection by diving into the Javascript concepts that AngularJS uses to implement them.
app.controller('homeController', ['$scope', function($scope) {
// inject existing and build your own services
}]);
Learn the advanced topic of custom directives. Save code and work by building reusable components in your apps.
app.directive("directive", function() {
// directives aren't as hard as they sound
// learn to build them
return {
restrict: 'E',
templateUrl: 'directives/directive.html',
replace: true,
scope: {
a: "=",
b: "&",
c: "@"
}
}
});
SPAs are the modern way to build web apps. Learn to build them in AngularJS by learning how they work. Finish up the course by building a weather forecast app you can use every day.
app.config(function ($routeProvider) {
// learn how SPAs work and how to build them
$routeProvider
.when('/', {
templateUrl: 'pages/home.htm',
controller: 'homeController'
})
.when('/detail', {
templateUrl: 'pages/detail.htm',
controller: 'detailController'
})
});
Bonus lectures, information on AngularJS 2.0, and much more. Also you'll get even more content as bonus lecutres are added during 2015.
The course is hosted and delivered via the well-known and respected Udemy.com. Get the course now here: Get The Course For Life!
Thank you and enjoy the course!
Tony Alicea is a 15 year veteran of web application development and user experience design, and carries a computer science degree, Microsoft certifications, and 25 years of experience in public speaking and teaching, both in front of large groups and as a one-on-one private instructor.