Article
If you've been working with Node.js for a while, I'm sure you're familiar with the importance of reading files. Whether you're building a web application, a utility script, or even a full-fledged Desktop app, reading files is an important part of a lot of projects. In some cases, you...
Scott Robinson
The term CSV is an abbreviation that stands for comma-separated values. A CSV file is a plain text file that contains data formatted according to the CSV standard. It has distinct lines which represent records and each field in the record is separated from another by a comma. It's very...
Vasyl Lagutin
By definition, web scraping means getting useful information from web pages. The process should remove the hassle of having to browse pages manually, be automated, and allow to gather and classify the information you're interested in programmatically. Node.js is a great tool to use for web scraping. It allows...
The abbreviation "XML" stands for - eXtensible Markup Language. It has a markup structure similar to HTML and was designed to store and transport data. It defines a set of rules that make it both human- and machine-readable. Despite being a markup language like HTML, XML is commonly...
In Computer Science, a file is a resource used to record data discretely in a computer’s storage device. In Java, a resource is usually an object implementing the AutoCloseable interface. Reading files and resources have many usages: Statistics, Analytics, and Reports Machine Learning Dealing with large text files or...
JavaScript Object Notation or in short JSON is a data-interchange format that was introduced in 1999 and became widely adopted in the mid-2000s. Currently, it is the de-facto standard format for the communication between web services and their clients (browsers, mobile applications, etc.). Knowing how to read and write it...
Copying a file or directory used to be a typical development task. With the introduction of Docker containers and a desire for maximum immutability, we see it less and less often. Still, it's a fundamental concept, and it might be useful to know what options does the developer have when...
© 2013-2024 Stack Abuse. All rights reserved.