IoT (Internet of things) The Internet of Things (IoT) is an ecosystem of Computer devices, automated/digital machines, Object, people or animals which hold unique identifiers and has the ability to transfer data over the network without involving human-to-human or human-to-computer interaction. The Internet in Internet of things can be any device capable of sending and […]
AngularJSFront End DevelopmentNode.js
We were already spell bound by the city of London, its culture, people and must mention the weather . Day 1 at Fullstack conf was like a dream. Awesome people, apt venue, lots of goodies , what not. Filled with excitement we reached Code Node before time, just to attend Todd Motto’s keynote. About Todd […]
AngularJSFront End DevelopmentNode.js
Developer conferences are a great source of learning about advancement in technology and share thoughts with people in developers community. Two Javascript enthusiasts from To The NEW are very excited to attend Fullstack Conf to be held in London from 13th July -15th July ,2016. Its a great pride to have one of our engineers, […]
I wanted to create a command line tool for sharing files for some time now, but given all the things we have to go through to do that same was a hassle. But after getting to know Node.js more, I have never thought it would be done with so much ease. NPM helps us to […]
Node works efficiently with I/O because of asynchronous event driven programming model,but in case of CPU-intensive tasks it will block the event loop, thus limiting the application responsiveness. CPU-intensive tasks should be performed by different process, to keep event loop free. So, Node allow us to spawn a new process and assigned the new task […]
Whenever we talk about nodejs development, the first thing that comes to our mind is managing concurrent requests in an efficient way. We can leverage our server performance and efficiency even more by providing a mechanism to cache it’s processed data(response) which seldomly changes. Such as products list, country codes, application configurations, etc. In this […]
Node.js powers your web application and is increasingly gaining popularity and adoption in the enterprise sector because it allows you to build large-scale, real-time, end to end scalable web applications with JavaScript. The Node.js ecosystem comprises of various frameworks such as MVC, full-stack, REST API and generators that help you to speed up the overall […]
Okay so let me come straight to the point that all of us need to provide multi-language support with our websites at some point of time. In such a competitive time, if we can find a short and effective way to do it without getting into much complexity then we are definitely one step ahead […]
This blog post is about using docker-compose, a tool provided by docker to define and run multi container application using a single command. It uses a docker-compose.yml file as default input file. I got a use case which was to run a Nodejs application behind a Nginx acting as a reverse proxy in two different […]