Skip to content

Instantly share code, notes, and snippets.

@applecool
Created February 21, 2019 21:38
Show Gist options
  • Save applecool/4bea9ca7774c1efe6778b64c60307fd7 to your computer and use it in GitHub Desktop.
Save applecool/4bea9ca7774c1efe6778b64c60307fd7 to your computer and use it in GitHub Desktop.
Read Buffer
let fs = require("fs");
fs.readFile("preload-dist.r", function (err, data) {
if (err) throw err;
console.log(data);
console.log(data.length);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment