#nodejs
Read more stories on Hashnode
Articles with this tag
REST API design using Node.js, covering topics like security, performance, versioning, testing, and documentation. By the end of this, you’ll have a...
Node.js is an open-source, cross-platform JavaScript runtime environment that allows developers to execute JavaScript code on the server side, outside...
The fs module is a built-in Node.js module that allows interaction with the file system. It enables you to: Create, read, write, and delete files and...
1. What is the path Module? The path module is a built-in Node.js module used to work with file and directory paths. It provides utilities...
1. What is npm? npm stands for Node Package Manager. It's the default package manager for Node.js. It helps developers install, share, and manage...
A module is a reusable piece of code encapsulated in its own file or directory. Node.js uses the CommonJS module system by default and also supports...