Articles

Web programming languages and standards.

Iterate Over Files and Directories in Node.js

Node.js provides powerful tools to access and manipulate the file system. Iterating over files and directories is a common operation, for example, to build a file management system, data analysis, or automated deployments.

Introduction to TDD in Node.js

Test-Driven Development (TDD) is a software development methodology that involves writing tests before the application code. In the Node.js environment, this practice is very common thanks to the availability of testing frameworks like Mocha, Chai, and Jest.

Back to top