
How to Prevent Cross-Site Scripting in Node.js
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 […]
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 […]
In the modern technological world, it is very rare to find stand-alone applications. Most applications depend on resources from other applications. These resources are made […]
Typescript, a JavaScript superset, is gaining tremendous popularity among developers. It incorporates every JavaScript feature with supplementary traits such as static typing and type checking. […]