import fs from 'fs'; const path = './file.txt'; try { if (fs.existsSync(path)) { //file exists } } catch(err) { console.error(err); }