fs.rmdirSync(dir, { recursive: true });
//DeprecationWarning: In future versions of Node.js, fs.rmdir(path, { recursive: true }) will be removed.
//Use fs.rm(path, { recursive: true }) instead
fs.rm(path, { recursive: true })
fs.unlink('./node/myText.txt',function(){
fs.rmdir('node');
});