I\'ve been trying to find a way to write to a file when using Node.js, but with no success. How can I do that?
The answers provided are dated and a newer way to do this is:
const fsPromises = require('fs').promises await fsPromises.writeFile('/path/to/file.txt', 'data to write')
see documents here for more info