Javascript

How To Work With Zip Files in Node.js — step-by-step Javascript tutorial on Progressive Robot

How To Work With Zip Files in Node.js

Working with files is one of the common tasks among developers. As your files grow in size, they start taking significant space on your hard drive. To get around this, you can group the files into a single ZIP file. In Node.js, you can use the adm-zip module to create and read ZIP archives. This tutorial will walk you through how to use `adm-zip` module to compress, read, and decompress files.

Read more
JavaScript Functional Programming Explained: Partial Application and Currying — step-by-step Javascript tutorial on Progressive Robot

JavaScript Functional Programming Explained: Partial Application and Currying

Two important ideas in JavaScript with roots in functional thought are currying, which transforms a function of multiple arguments into a series of function calls, and partial application, which fixes the value of some of a function’s arguments without fully evaluating the function. In this article, you will use partial application to fix arguments to a function, curry functions to facilitate partial application, and design functions that facilitate partial application.

Read more
How To Use Font Awesome 5 with React — step-by-step Javascript tutorial on Progressive Robot

How To Use Font Awesome 5 with React

Font Awesome is a toolkit for websites providing icons and social logos. React is a coding library using JavaScript for creating user interfaces. While the Font Awesome team have made a React component to promote integration, there are some fundamentals to understand about Font Awesome 5 and how it’s structured. In this tutorial you’ll learn the ways to use the React Font Awesome component.

Read more
CHAT