Writing a tool at work to move our infrastructure setup to a more declarative approach. To do so, I run terraform inside AWS Lambda (will write about this some time), every time a configuration needs to be applied. I use the terraform import feature to copy configurations from test accounts, and need to do so… Continue reading til: TF plugin cache
Category: Node.js
ng-India Conference 2019
Organised on February 23, 2019 in Gurgaon, India, ngIndiarightly proved its stature as the largest Angular conference of India. Starting from the love of the audience to the super informative sessions from all the speakers, the one-day conference did great justice to the community with people coming in from so many different cities/countries like Chennai, Ludhiana,… Continue reading ng-India Conference 2019
Faking a back-end server in Angular
In this blog post, we will see how to work with data without using a real server. This means without having to use a server where the data resides or without having to working with $http services or requesting APIs, we can use the data and perform CRUD operations with that. Wait, what is CRUD… Continue reading Faking a back-end server in Angular
Change CSS of PC on button click in CC?
To start with this blog post, let me put focus on some of the terminologies that I have used in the title of it. So, the agenda is to change the CSS of our Parent Component with the help of a button inside our child component. For those who are totally new to Angular, CSS… Continue reading Change CSS of PC on button click in CC?
FireStore with Angular. But Firebase?
This confusion about the difference between FireStore and Firebase comes to many. In this article, I put focus on why Firestore was launched and how it can be used with Angular. Firestore can be called as the evolution of the Firebase realtime database. This is because it provides a data model that captures all the interesting… Continue reading FireStore with Angular. But Firebase?
Understanding Microsoft Cognitive Services
In this article, I will be talking about Microsoft Cognitive Services and give you an idea of what all can we achieve with the help of Cognitive Services and the different APIs. To call a cognitive service is a very easy task. We get a key and then from our application, we can use the… Continue reading Understanding Microsoft Cognitive Services
Installing node.js using NVM
Can we manage and use different versions of Node.js on the same machine? Using NVM, we can! Node Version Manager (NVM) is a tool that helps us to use different versions of Node.js on the same machine, each version running locally in its isolated environment. We can also switch between different versions with out hampering… Continue reading Installing node.js using NVM
Udemy- Step by Step Guide: Angular for Beginners
I am very excited to share that my course Angular for Beginners by BPB Publications has been published on Udemy.comĀ (https://www.udemy.com/angular-for-beginners-l/). It is a step-by-step video course for all the Angular beginnersĀ This course will focus on creating web applications using the JavaScript framework AngularĀ and will walk us through a journey of learning how to install… Continue reading Udemy- Step by Step Guide: Angular for Beginners
Node’s REPL Mode
When working with node, if we type in node command with an executable script for it, the node starts a REPL session. But, What is a REPL session? REPL is Read-Eval-Print-Loop implementation provided by the REPL module which exists both as a standalone program as well as a includible one in other applications. It is very… Continue reading Node’s REPL Mode