Languages
[Edit]
EN

Node.js - fs.writeFile() example

0 points
Created by:
Blythe-F
650

In this article, we would like to show you how to use fs.writeFile() in Node.js.

The fs.writeFile() method can be used to:

  • create new file (if file with the specified name doesn't exist),
  • update existing file.

Note:

You can copy each of the examples below and run the script with the following command in the terminal / cmd opened in your project's directory:

1. Creating new txt file with fs.writeFile()

Edit

Below we create file.js file which creates new txt file in the same directory with some text inside.

Note:

If you want to create file in a different directory just specify relative path to the file as a fs.writeFile() first argument instead of just file name.

Practical example:

Before:

Node.js - creating new file with fs.writeFile
Node.js - creating new file with fs.writeFile

After:

Node.js - creating new file with fs.writeFile
Node.js - creating new file with fs.writeFile

2. Updating txt file with fs.writeFile()

Edit

Below we create file.js file which updates existing txt file in the same directory with some text inside.

Note:

If you want to update file in a different directory just specify relative path to the file as a fs.writeFile() first argument instead of just file name.

Practical example:

Result:

Node.js - updating txt file with fs.writeFile
Node.js - updating txt file with fs.writeFile

3. fs.write() example

Edit

The fs.write() method creates a new file with given string or inserts the string at the end of the file if the file exists.

Practical example:

Example result after running script two times:

Node.js - creating & updating txt file with fs.write()
Node.js - creating & updating txt file with fs.write()

Alternative titles

  1. Node.js - how to update / write file with fs.writeFile()
  2. Node.js - writing to files
1
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Node.js - file system module

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join