Skip to content

Instantly share code, notes, and snippets.

@rpivo
Last active March 11, 2021 03:22
Show Gist options
  • Save rpivo/db23d0d19a7c4329a68bb87def4628b1 to your computer and use it in GitHub Desktop.
Save rpivo/db23d0d19a7c4329a68bb87def4628b1 to your computer and use it in GitHub Desktop.
Getting a File's Contents in Node

Getting a File's Contents in Node

const fs = require('fs')

function getFileContents(file) {
  try {
    return fs.readFileSync(file, 'utf8')
  } catch (e) {
    console.log('error in function getFileContents', e)
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment