DEV Community

Discussion on: Node.js: Breaking JavaScript out of the browser since 2009

Collapse
 
azivkovic76 profile image
Aleksandar.Zivkovic

fs.write('devto.txt', 'Hello World', err => console.log(err));

wrong function, you need to use writeFile, the previos one takes file description as a first input argument.

Collapse
 
somedood profile image
Basti Ortiz

Whoops! My bad! Thank you for that. I have corrected the error.