Kartik Sangalkartik-devops.hashnode.dev·Aug 30, 2024Chapter - 1To initialize the Node JS project, run the following command in the terminal: $ npm init It will prompt you some questions (name, version, description, entry point, etc.). You can either answer them or press Enter to accept the defaults. At the end, ...2 likesNode.js
Gondi Bharadhwaj Reddybharadhwaj.hashnode.dev·Jul 19, 2024Learn Node.js File System: Easy Step-by-Step GuideNode.js is known for its powerful capabilities, and one of its core modules is the File System (fs) module. This module allows you to interact with the file system in a way that is simple yet efficient. In this blog, we'll explore the basics of the N...1 likefs
Nishant Kumarblog.nishant.lol·Dec 2, 2022How to Process the Multiline input in Node JSYet again as always while trying to solve the problem statement, logically I can easily do that but again I got lost on how to do the input processing. No idea let's look at it. For example, suppose the Elves finish writing their items' Calories and ...302 readsAdvent of Codeaoc
Ravi Kumarravi-kumar.hashnode.dev·Oct 3, 2022Node.js CURD Operations with File SystemThe Node.js file system module allows you to work with a file system on your computer. We can include the File System module by using the require() method. const fs=require('fs'); The fs module provides the API for interacting with a file system in ...10 likes·79 readscrud