
How to Generate Fake Data in Node.js Using Faker.js
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 […]
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 […]
This article will help the reader understand what Cross-site scripting attacks (XSS) are, how XSS works, and how XSS disrupts websites. We will also go […]
Have you ever wanted to build an application that generates QR codes of text or URLs using Node.js? If so, then you are in the […]
In this article, we will learn in-detail what modularization of code is, and how to do it. We will also learn to modularize code in […]
Strapi is an open-source headless CMS used for building fast and easily manageable APIs written in JavaScript. It enables developers to make flexible API structures easily […]
Node.js is a server-side platform based on Google Chrome (V8 Engine). Ryan Dahl created Node.js in 2009. Node.js is a tool used when creating fast and […]
Node.js is known to be single-threaded, allowing for the execution of single command at a given time. For example, executing processor intensive server-side code may […]
A push notification is a message that pops on the screen when a mobile or a web application is performing another activity. In modern web […]
billboard.js is a JavaScript library that facilitates data visualization in charts and is based on D3 V4+. billboad.js makes it easier for developers to visualize data instantly without […]
Node.js is a very popular JavaScript framework. It shines most when used to build back-end services and APIs. Node.js developers often utilize open-source frameworks and libraries like Express.js to […]
In this Node.js tutorial, we will learn about HTTP/2 and server push, how it works, and its impact on performance. We will use Node.js to […]
A website is based on the HTTP protocol. HTTP is a stateless protocol which means at the end of every request and response cycle, the […]
Email verification is a mechanism to ensure that a system does not stack its database with fake email addresses. An account remains unverified until the […]
Mongoose.js connects your MongoDB clusters or collections with your Node.js app. It enables you to create schemas for your documents. Mongoose provides a lot of functionality […]
Typescript is a superset of JavaScript with additional features such as static types checking. Typescript is gaining a lot of popularity among JavaScript developers. It […]
JIMP eliminates the boilerplate code required to resize images to a given dimension before storing or adding watermark to images for branding purposes. 1. Getting […]
Google Sheets API enables programmers to create applications that can read, write, and update a Google spreadsheet. In advanced stages of programming, Google sheets can […]
Google Drive API is a Google product developed to enable developers to create applications that use Google Drive cloud storage. Through the API, you can […]
The rate-limiting feature makes it possible to secure the Backend API from malicious attacks. It allows us to cap the number of requests that a […]