The term "reactive programming" refers to a programming style based on handling "events" of all sorts. App developers are familiar with simple user interface events, such as mouse clicks, and know how to deal with them using their favorite programming language. But there are also other kinds of events an app may have to deal with, such as a state change of an object, an incoming message, the completion of an asynchronuous operation or an exception/error event.
Web Engineering Blog
Post date: Wednesday, May 24, 2017 - 15:20
Updated date: Tuesday, May 14, 2019 - 13:33
The following example discussion is from the online book Web Applications with JavaScript or Java.
Post date: Sunday, November 27, 2016 - 15:30
Updated date: Sunday, December 4, 2016 - 23:37
Home Automation is made simple for everyone, with the industrial grade PRODINo ESP8266 based module. It can be programmed with the Arduino IDE and allows to control (ON/OFF switch) mains (110-240 VAC) powered devices such as light bulbs, water pumps, cafe machines or garage doors.
Post date: Wednesday, September 21, 2016 - 11:52
Updated date: Sunday, November 6, 2016 - 14:47
As opposed to the less powerful Arduino, the competitively priced and WiFi-enabled ESP8266 supports the Web-of-Things (WoT) since it can be programmed in JavaScript.
Post date: Wednesday, August 24, 2016 - 19:32
Updated date: Thursday, September 1, 2016 - 14:23
As in all cases of designing a complex system, no matter if a new building, a new space shuttle, a new computer or a new software application is to be designed, an architecture provides a kind of master plan for defining the structure of the system.
Post date: Tuesday, July 19, 2016 - 01:47
Updated date: Wednesday, August 10, 2016 - 23:35
Post date: Wednesday, April 20, 2016 - 16:46
Updated date: Tuesday, May 3, 2016 - 20:26
Learn how to develop Arduino-based apps for the Web of Things (WoT). The third part of this series shows how to set up a connection between an Arduino and the Internet via a WiFi network and how to store sensor data using a free cloud service, such as ThingSpeak.
Post date: Friday, April 8, 2016 - 11:41
Updated date: Friday, April 22, 2016 - 20:36
Learn how to develop Arduino-based apps for the Web of Things (WoT). This second part of a series of tutorials shows how to read analog and digital sensors with the help of Arduino.
Post date: Monday, April 4, 2016 - 15:07
Updated date: Friday, April 22, 2016 - 20:34
Learn how to develop Arduino-based apps for the Web of Things (WoT). This first part of a series of tutorials shows the basics of an Arduino program (known as a "sketch") and provides a quick introduction to some electronic components, including resistors, RGB LEDs and LEDs in general.
Post date: Monday, February 15, 2016 - 15:34
Updated date: Wednesday, February 17, 2016 - 18:19
Improve your asynchronous JavaScript code by using the JavaScript feature of "promises". Learn how to use "promises" with the help of example code for real-world use cases.
Post date: Wednesday, January 20, 2016 - 14:48
Updated date: Wednesday, December 21, 2016 - 17:37
WebRTC is an edge technology, enabling modern web browsers to remotely transfer files, video/audio streams, and share your screen using peer-to-peer connections. In this tutorial, we show how to build a simple video/audio chat web app with WebRTC and WebSockets.