Skip to content

Instantly share code, notes, and snippets.

@SarveshKadam
Created October 23, 2020 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SarveshKadam/ed9b09bd8597037f22b0498fbb43c2e6 to your computer and use it in GitHub Desktop.
Save SarveshKadam/ed9b09bd8597037f22b0498fbb43c2e6 to your computer and use it in GitHub Desktop.
const fs = require('fs')
fs.readFile('./file.txt','utf-8',(err,data)=>{
if (err) throw err
console.log(data);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment