Getting started with AngularJS directive
Getting started with AngularJS DirectiveAs part of our exploration we need to set up the Bootstrap CSS and AngularJS libraries. We are also referencing a js file named app.js where our code will...
View ArticleReal World JavaScript
Real World JavaScript – Part 1Strict ModeStrict Mode as specified in ECMAScript Standard 5 is a way to use only the good parts of the JavaScript. Strict mode code will be run with different behavior in...
View ArticleReal world JavaScript - Part 2
Real World JavaScript – Part 2Javascript’s class design patternIn javascript, the basic concept of class is implemented through combining a constructor function and an associated prototype object. In...
View ArticleDeveloping a JQuery Plugin from Scratch
Developing a JQuery Plugin from ScratchWe will explore building a not trivial JQuery plugin and will implement the Scroll to Top functionality seen in certain websites. Our plugin will be a very basic...
View ArticleReal World JavaScript Part 3
Real World JavaScript Part 3Array Direct AssignmentIf you have wandered through UnderscoreJS source code, you will come across array direct assignment. It uses a nice trick of assigning the value to...
View ArticleAngularJS in Depth Part 1
AngularJS in Depth – Part 1AngularJS from Basics to Dependency InjectionAngularJS is a MVC or (MV*) framework for client side web applications. One of the basic functionality offered by AngularJS is...
View ArticleReal World JavaScript Part 4
Real World JavaScript Part 4Specifying a function as string replacementIn EmberJS camelize method is used for converting a string to its loweCamelCase form. var STRING_CAMELIZE_REGEXP =...
View ArticleAngularJS in depth Part 2 Filters
AngularJS filters in DepthAngularJS filters come in handy when formatting the data for display and as such they are most often used along with AngularJS expressions.Currency FilterAs the name...
View ArticleRefactoring to AngularJS Directive
Refactoring to AngularJS DirectiveThe aim of this article is to refactor a part of the AngularJS view and the controller to a reusable directive thereby going through the internal workings of the...
View ArticleExpressJS start to Authentication
ExpressJS start to AuthenticationManually installing and managaing packages could soon become nightmare in any platform and Node Package Manager (NPM) is the solution to automate packages discovery and...
View Article