This post demonstrates how to create SEAFs (Self-Executing Functions) in JavaScript and briefly shows how AngularJS applications heavily use this function. Software Environment Windows 10 Notepad or Notepad++ AngularJS 1.6.x Plunker – https://plnkr.co Self-Executing Anonymous Functions An AngularJS the application
JavaScript – Convert Function to String and Back
This post demonstrates how to convert a JavaScript function to string and using the same string to declare and execute a method dynamically.
Access environment variable in Node.js
This short post shows how to access environment variables in Node.js.
PhoneGap – HelloWorld Example via PhoneGap CLI
This post demonstrates how to create a very simple example of PhoneGap application via PhoneGap CLI.
AngularJS UI-Router Nested Views
This post demonstrates how to create nested views with UI-router.
Your First Proper AngularJS Application
This post demonstrates how to create a proper and typical AngularJS application with controllers. In my previous post Your First AngularJS Application, I didn’t touch on the basics to create a very simple and typical AngularJS application. However, the example allows us to bootstrap the AngularJS application (single-page) and demonstrates the two-way binding feature wherein the characters are displayed as you type them in the textbox.
AngularJS Routing with ngRoute
With AngularJS, you write Single Page Applications (SPAs) that uses only a single main page (e.g., index.html) to render its User Interface (UI) component. How the UI visually response to users happens within that single page. Each section of the page may display different content. SPAs generally do not redirect to another main page.
Routing is a way to change the content of one or more sections of the page. One way to do implement it is using ngRoute
AngularJS Routing with UI-Router
Previously I wrote about routing using ngRoute. This post demonstrates how to implement routing using UI-Router, a rather flexible routing solution with nested views in AngularJS unlike ngRoute.
AngularJS Routing Dynamically with UI-Router
Previously I wrote about routing using UI-router. This post demonstrates how to programmatically move from one state to another instead on a set of ui-sref links.
AngularJS use service from another module
This post demonstrates how to use services from another module.