Skip to content

Save some text to a file in Node.js

New Course Coming Soon:

Get Really Good at Git

So you want to save some text to a file using Node.js.

Super simple:

import fs from 'node:fs'

const text = 'yo'

fs.writeFile('text.txt', text, (err) => {
  if (err) {
    console.error(err)
  }
  console.log('done')
})
→ Get my Node.js Handbook
→ Read my Node.js Tutorial on The Valley of Code

Here is how can I help you: