ESC/POS printing by bridging (React Js + Flutter)

In this blog, we will discuss the implementation of pos printing in react js app and communicate with flutter app to print the receipt. Here there are two parts. Sending buffer data from reactjs Receiving buffer data from flutter app and sending it to pos printer. Before diving into details, first of all we have […]
How OOP works in JS (Part 1 – Prototype and Prototype Chaining)

Before starting we have to keep in mind that Javascript is not a class-based object-oriented language. Javascript is a prototype based language. Lets see the definition of Class based language and Prototype based Javascript. In the future, a blog will be written discussing the difference between Class based language and Prototype based Javascript. According to […]