Skip to content

Instantly share code, notes, and snippets.

@kmoskwiak
Created December 7, 2020 07:36
Show Gist options
  • Save kmoskwiak/0e0a022cb1350d5d3b4e60052f62c07b to your computer and use it in GitHub Desktop.
Save kmoskwiak/0e0a022cb1350d5d3b4e60052f62c07b to your computer and use it in GitHub Desktop.
const CHUNK_SIZE = 10000000; // 10MB
const data = fs.readFileSync('./file');
for(let bytesRead = 0; bytesRead < data.length; bytesRead = bytesRead + CHUNK_SIZE) {
// do something with data
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment