В приведенном ниже коде всякий раз, когда я его выполняю, при ошибке консоли сообщается, что объект не поддерживает createWritestream
var Fs = require('fs');
var Path = require('path');
function download () {
var path = Path.basename( "//Users//Desktop//hello.txt")
var content="hello";
var ws = Fs.createWriteStream(path, {flags:'w', encoding: 'utf-8'})
ws.on('error', function(e){console.error(e)})
ws.write(content)
ws.end();
console.log("The file was succesfully saved!");
}