What is Asynchronous ?
Asynchrony, in programming world, refers to the occurrence of events independent of the main program flow and ways to deal with this kind of events.
CRUD ?
The term "CRUD" refers to the four operations that are thought to be required to develop a data storing application: create, read, update, and delete. It originates from the area of computer programming. Any data storage device, such as a solid-state drive or a hard disc, that keeps power after the device is turned off is referred to as persistent storage. In contrast, volatile memory, which includes random access memory and internal caching, stores information that will be lost when a device loses power.
1 Create a file and data into it
const fs = require ("fs");
fs.writeFile("Newfile.txt","sample data" ,(err) =>{
console.log("created");});
2 To append changes
fs.appendFiles("Newfile.txt","sample data changed" ,(err) =>{
console.log("appended");});
3 To read file
fs.readFile("Newfile.txt",'utf-8',(err,data) =>{
console.log(data);});
4 To delete a file
fs.unlink("Newfile.txt",(err) =>{
console.log("delted");});
Check out my Github for source code :-https://github.com/crackingdemon/NodejsFilesystemCrud
Top comments (0)