Skip to content

How to create an empty file in Node.js

New Course Coming Soon:

Get Really Good at Git

Discover how create an empty file in a filesystem folder in Node.js

The method fs.openSync() provided by the fs built-in module is the best way.

It returns a file descriptor:

const fs = require('fs')
const filePath = './.data/initialized'

const fd = fs.openSync(filePath, 'w')

the w flag makes sure the file is created if not existing, and if the file exists it overwrites it with a new file, overriding its content.

Use the a flag to avoid overwriting. The file is still created if not existing.

If you don’t need the file descriptor, you can wrap the call in a fs.closeSync() call, to close the file:

const fs = require('fs')
const filePath = './.data/initialized'

fs.closeSync(fs.openSync(filePath, 'w'))
Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching May 21, 2024. Join the waiting list!
→ Get my Node.js Handbook
→ Read my Node.js Tutorial on The Valley of Code

Here is how can I help you: