Tag: javascript
-
Javascript frameworks 2020
Java script is one of the most essential object orient programming language designed to make web development. It makes things easier, more engaging, responsive, interactive, which helps in enhancing user experience. With the advancement of technology, a various JavaScript framework has also emerged in the market. It is a tool that makes working with Java […]
-
Handling POSIX SIGNALS in NodeJS (Javascript!)
NodeJS, built over the v8 Engine, which is essentially C/C++ application, exposes much if not all of the POSIX signals to the Javascript layer. Hence we can have multiple options coming out of design of architecture using these SIGNALing and SIGNAL Handling possibilities. A few noteworthy things that we can think of from the top […]
-
How NodeJS Works? What is v8 Engine?
When Ryan Dahl started working on Node, and identifying the right language for creating this piece of software for making scalable server architectures, Javascript may not be the first language of choice. But the modularity, event-driven, asynchronous and concurrency-enabled language that javascript is quite surely fit the bill for his expectations and now javascript has […]
-
Simple UDP Server in Node.js (dgram example)
The NodeJS environment has a dgram package which can be used to create udp server/clients that can be used to interact with different components of an architecture other than a typical web browser. Let’s say we have real time OpenCV or C++ program wanting to send data to a nodejs server (it can also be […]