At Agira, Technology Simplified, Innovation Delivered, and Empowering Business is what we are passionate about. We always strive to build solutions that boost your productivity.

Create An Angular Service And Access It In Multiple Components

Maintaining functions in services have many benefits because it can be written in one place and can be accessed from many components. So we can avoid the code redundancy also on other hand, if any function requires change then we can able to modify and track all the changes in single place. Therefore, this blog […]

  • Ramya Venkatesan
    Ramya Venkatesan
  • November 20, 2018

How To Build A Node.js API In 30 Minutes

The purpose of this blog is to guide you through writing a basic node.js CRUD (CREATE, READ, UPDATE, DELETE) API which you can use as a foundation for any of your applications. Though there are many node.js frameworks like Hapi, Sails, I wrote these Node.js API with an express framework, because it is very simple […]

  • Ramya Venkatesan
    Ramya Venkatesan
  • August 23, 2018

How To Interact With Database Using Async Module In Node.js

As we all know NodeJs works asynchronously (i.e., Non-Blocking). It will not execute the programming code line by line and it will not wait for any function, i/O or DB operations to finish executing. This feature of nodejs makes the process more efficient, but we cannot prefer this asynchronous nature in all scenarios. For example, […]

  • Ramya Venkatesan
    Ramya Venkatesan
  • June 13, 2018