React.js is a common and famous front-end web frameworks. Yet, in most situations, a web application will require back-end services to process different...
Topic: Node.js
Compiling a Node.js Application into an .exe File
During the development phase, the developer performs several processes of installation and coding to build and run an application. But, the end-users are just...
Data Encryption and Decryption in Node.js using Crypto
Web applications have access to large amounts of data that belongs to people, organizations, and governments. The more the data is accessed, the higher the...
Uploading Files using Formidable in a Node.js Application
Whenever we submit a form on the client-side of any website, all the form data goes to the server-side. Usually, form-data gets encoded before we submit it to...
Understanding Cookies and Implementing them in Node.js
Websites usually store a small amount of data on the browsers. There are three main kinds of browser-based storage: session storage, local storage, and cookie...
Making cURL Requests in Node.js
cURL (client URL) is a free tool used to make network requests from the terminal using various protocols available. It is very useful when one wants an...
How to Build an Authentication API with JWT Token in Node.js
In this tutorial, we will learn how to use JWT in Node.js to secure endpoints and even authenticate users. It’s pretty simple to write code and develop...
How to use TypeScript with Node.js
Typescript, a JavaScript superset, is gaining tremendous popularity among developers. It incorporates every JavaScript feature with supplementary traits such...
Node.js Network Requests using Axios
In the modern technological world, it is very rare to find stand-alone applications. Most applications depend on resources from other applications. These...