Languages
[Edit]
EN

Node.js - write line to file

0 points
Created by:
Aleena
694

In this article, we would like to show you how to write line to the file in Node.js.

Quick solution:

const fs = require('fs');

const text = 'Example text...';

fs.writeFile('./example.txt', text, {encoding: 'utf8'}, (error) => {
  if (error) {
    console.error(error);
    return;
  }
});

Note:

This solution replaces the example.txt file contents if it already exists.

 

Additional arguments - flags

In this section, we present how to modify the quick solution from previous section by specifying an additional argument (flag) in fs.writeFile().

FlagDescription
r+
  • open the file for reading and writing
a
  • open the file for writing
  • positioning the stream at the end of the file
  • the file will be created if it doesn't exist
a+
  • open the file for reading and writing
  • positioning the stream at the end of the file
  • the file will be created if it doesn't exist
w+
  • open the file for reading and writing
  • positioning the stream at the beginning of the file
  • the file will be created if it doesn't exist

Practical example:

const fs = require('fs');

const text = 'Example text...\n';

fs.writeFile('./example.txt', text, { encoding: 'utf8', flag: 'a+' }, (error) => {
  if (error) {
    console.error(error);
    return;
  }
});

Note:

Now when you run the program, the text string will be added at the end of example.txt file.

Alternative solution

In this example, we use fs.writeFileSync() as an alternative solution to fs.writeFile(). The API also replaces the contents of the file if it does already exist.

const fs = require('fs');

const text = 'Example text...';

try {
  const data = fs.writeFileSync('./example.txt', text);  // fs.writeFileSync(path, string);
} catch (error) {
  console.error(error);
}

References

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.
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