Introduction to the Node.js API
Learn about the Node.js API, and set up our project folder to practice newly learned concepts.
By the end of this chapter, we’ll be able to do the following:
- Use the
fs
module to access and interact with the file system. - Use the
process
module to interact with the current Node.js process.
Node.js API overview
Let’s get started with Node.js by ...