AngularJS, MEAN

Node Version Using .nvmrc

Introduction When we are working with multiple Node.js and React.js projects, managing different Node versions will be very challenging. There is a tool that is simple and powerful that saves us from version-related problems which is the .nvmrc file. This tool ensures that every React.js and node.js project uses the right node version....

by najmuddin.kaishar
Tag: Angular.js
06-Mar-2024

AngularJS, Digital Transformation

Building an App – Ionic Vs React Native

More and more companies are putting efforts on building digital products. A mobile application or web portal becomes business critical with customers evolving digitally. Some of these companies have specific needs while pursuing application development such as building cross-platform application, hybrid application or native application. ...

by Apoorva Chawla
Tag: Angular.js
17-Oct-2017

AngularJS, Front End Development

Angular + SEO

There's a phase in every project when development reaches its completion and next step is to make it search engine friendly. When I had to do this task in my project, at that time I was a little bit confident that this is a very simple task and we just need to set meta tags and some other html tags so that google can crawl easily. But...

by Rubi Saini
Tag: Angular.js
05-Oct-2015

Node.js, Technology

JSChannel Conference 2015: Summarizing the thoughts

Javascript ninjas from TO THE NEW Digital travelled all the way to Bengaluru for JSChannel Conference 2015. DAY 1   The weather was perfect to start the first day of the conference. There were renowned Javascript aficionados present from all around the world. The day was kicked off with the keynote by Douglas Crockford(Author...

by Sakshi Tyagi
Tag: Angular.js
22-Jul-2015

AngularJS, Front End Development

Scope Event propagation in AngularJS

Angular provides a very powerful means to transfer messages to scopes at different hierarchical level. We can dispatch an event upwards through the scope hierarchy by notifying all the registered "$rootScope.Scope" listeners in the hierarchy or downwards to all the child scopes. Angular provides these two functions to achieve the event...

by Dhanendra Kumar
Tag: Angular.js
01-Jun-2015

AngularJS, Front End Development

Angular’s $resource for CRUD Operations

$resouce is a perfect option to create a single page application which involve CRUD operations.You don't write your CRUD methods (create,read,update and delete) when you use it. A RESTful web service with one endpoint for a data type that does different things with that data type based on HTTP methods like GET, POST, PUT, DELETE,...

by Rubi Saini
Tag: Angular.js
30-May-2015

Node.js

Form Validations using AngularJs

There are lots of ways to validate a web page like HTML5 validations, but why not do it in a better interactive way by using AngularJS. AngularJS provides us with several form properties for validation, which helps in providing instant feedback in case validation is violated.     $valid: return true when input field is valid.  ...

by Sandeep Kumar
Tag: Angular.js
19-Feb-2015

AngularJS, Front End Development

Minification safe Angular.js

Recently, I wanted to upgrade my Grails application to 2.4.3 and also switched from resource plugin to assets-pipeline plugin. As everything was going good in the development, so I pushed it to QA after which I was bombarded with JavaScript errors and missing providers. What has happened?? So here, Angular.js internal dependency...

by Brij Kishor
Tag: Angular.js
17-Feb-2015

Node.js

Highlighting links in text using “linky” filter

At times we come across few cases where we need to differentiate the links amongst the plain text. Angular provide us with a very useful filter named : "linky" which help us to do so. With the help of linky filter we can detect links from text and show them differently .  Linky takes text and produces HTML by wrapping all...

by Rubi Saini
Tag: Angular.js
13-Feb-2015

Node.js

‘resolve’ property in angular

Now a days , angular ui-router is being used actively for maintaining routes in angular applications. In my current project, I came across a use case in which I had to perform certain checks before executing certain route mapping. For example lets consider the most basic situation in which we want to directly show dashboard route in case...

by Rubi Saini
Tag: Angular.js
22-Jan-2015

Technology

How to get name initials as an image?

While making an application, showing user's image is a very common use case. Gone were the days when we used to show anonymous image in case a person's profile image or display image is not present. We can easily show a person's name initials as an image to identify the person. Like : Lets consider this html, where we use an...

by Sakshi Tyagi
Tag: Angular.js
07-Dec-2014

Technology

$sce in angular

In my Angular project, I came across a situation where i had to render some html markup, but the tricky thing was, the markup was contained in some angular scope variable. And when outputting it, it just printed out the html markup as basic text. A quick Google search informed me about the directive ng-bind-html and...

by Sakshi Tyagi
Tag: Angular.js
27-Apr-2014