
Building a Simple Cryptocurrency Blockchain using Node.js
A blockchain is an open, digital, and duplicated ledger of transactions. Each new transaction history is recorded and stored in an encrypted way that is […]
A blockchain is an open, digital, and duplicated ledger of transactions. Each new transaction history is recorded and stored in an encrypted way that is […]
This article will take you through the process of provisioning SSL certificates for local servers. Building a web application for a production server requires local […]
Adonis.js is written from the ground up with strong principles and goals in mind to be a robust integrated system having developer ergonomics, stability, and speed. […]
PayPal is an online payment platform that allows users to transfer funds worldwide. PayPal makes it easier for merchants to accept online payments through their […]
Node.js is a computer language based on JavaScript. When learning a new language, finding commonalities between other computer languages can be helpful. This article will […]
This article will explain how to create a simple chat application with Node.js and React, where the exchanged messages will have end-to-end encryption using secret keys. In recent […]
Two-factor authentication is a security measure implemented in an application to increase security by providing two separate pieces of evidences for authorization to the system. […]
Node.js has an asynchronous event-driven architecture. This allows designs where events emitted due to an action can cause listener object(s) to be executed. Node.js has […]
M-Pesa can be described as a phone-based mobile banking service. Since its inauguration in 2007 by Vodafone Group PLC and Safaricom in Kenya, it has expanded to […]
Streams are objects that allows developers to read/write data to and from a source in a continuous manner. There are four main types of streams […]
Node.js is an open-source and cross-platform runtime used when executing JavaScript code on the server-side. One of the popular Node.js server frameworks is Express. Implementing […]
Backend development with Node.js is not a new concept and its being used to implement many digital products online. It comes with many benefits, making it suitable […]
In this article, we shall take a look at how to harness the power of TypeScript to create an API. Microsoft introduced typeScript as a […]
Web applications handle data from various sources. Keeping track of these records can be challenging for administrators. AdminBro solves this issue by providing an interface […]
One of the main problems a developer faces during media upload is a quick image and video manipulation and delivery optimization. This can be solved […]
This article will go through the basics of asynchronous functions in Node.js and how to use callbacks to perform tasks asynchronously. A callback is the […]
In this article, we are going to look at the differences between Node.js and Python. The comparison between Node.js and Python proves to be a […]
Node.js Read-Eval-Print-Loop (REPL) is an easy-to-use command-line tool, used for processing Node.js expressions. It captures the user’s JavaScript code inputs, interprets, and evaluates the result of this […]
During system development and testing, employment of Fake data can be very useful. This is because it prevents one from using ones real identity, especially […]
1. Introduction Node.js has several utilities that we can use to schedule the execution of our code. Unlike most Node.js modules, the timer module is […]