Skip to content

Instantly share code, notes, and snippets.

@raditotev
Created January 3, 2023 14:29
Show Gist options
  • Save raditotev/88a56ced96db29b04f240b8e596b6393 to your computer and use it in GitHub Desktop.
Save raditotev/88a56ced96db29b04f240b8e596b6393 to your computer and use it in GitHub Desktop.
Read/ write files using base64 encoding
const file = fs.readFileSync(path.join(__dirname, 'sample.pdf'), { encoding: 'base64' })
fs.writeFileSync('path/to/where/file/will/be/saved', file, 'base64')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment