AngularJSFront End DevelopmentNode.js

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 […]

Rubi Saini
Rubi Saini
Read

Node.jsTechnology

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 of […]

Node.js

Sharing content using META tags

Meta Tags Meta tags in HTML documents provide metadata/information about a web page, or the content it contains. They must be declared within head section of the web page only. They are used to specify page description, keywords (for search purposes), author information or any other metadata giving additional information about the page. Meta tags […]

Node.jsTechnology

Introduction to backbone.js

It is difficult to build single-page web applications or complicated user interfaces by simply using frontend libraries like jQuery. Backbone.js is a lightweight JavaScript library that adds structure to your client-side code. It is based on the Model-View-Controller pattern. It is best suited for creating single page applications using a RESTful service for persisting data. […]

Node.jsTechnologyTesting

Custom matcher for testing with Jasmine

Jasmine is a behavior-driven development framework for testing JavaScript code. Many Jasmine users only use the default set of matchers which are extremely powerful, yet are unable to meet our requirements when dealing with complicated or custom code. Jasmine provides a wide list of built-in matchers: Arrays: [javascript] expect(array).toBeArray(); expect(array).toBeArrayOfNumbers(); expect(array).toBeEmptyArray();[/javascript] Booleans: [javascript] expect(boolean).toBeBoolean(); expect(boolean).toBeFalse(); […]

AngularJSNode.jsTechnology

NodeSchool – Delhi NCR, 2015

And we returned with yet another successful NodeSchool event which was bigger than the last one. NodeSchool-Delhi NCR was conducted on July 4, 2015 at TO THE NEW Digital office. This community event basically got its inspiration from NodeSchool – an open source project run by people in order to enable others to organize more community driven […]

AngularJSNode.js

Building the web with Polymer

Polymer is not another framework, in fact it sits a layer below all these frameworks. It is used to create actual HTML elements, which are independent of the implementation on top of them. Take for example a simple HTML button, it works on every browser, has roughly the same visuals and functionality. A button on the web can work with any of the front end frameworks.

Node.js

Sending iCal invite using Node Js

Sending event invites through an email is a common use case nowadays in applications. In this blog, we will briefly cover the steps to accomplish this using Node.js.

AngularJSFront End DevelopmentNode.js

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, etc. So with a $resource […]