Skip to content

Instantly share code, notes, and snippets.

@HariantoAtWork
Created January 10, 2020 09:48
Show Gist options
  • Save HariantoAtWork/3cb4e19552e3d214af78c61dc2ca4331 to your computer and use it in GitHub Desktop.
Save HariantoAtWork/3cb4e19552e3d214af78c61dc2ca4331 to your computer and use it in GitHub Desktop.
Node buffer example
const options = {
url: 'https://url/for/png/file',
encoding: null
};
request.get(options)
.then(function (res) {
const buffer = Buffer.from(res, 'utf8');
fs.writeFileSync('/some/path', buffer);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment