Skip to content

Instantly share code, notes, and snippets.

@shaffeeullah
Created November 1, 2021 17:11
Show Gist options
  • Save shaffeeullah/d3e755ffeb18196adcaf5d51f82f2d32 to your computer and use it in GitHub Desktop.
Save shaffeeullah/d3e755ffeb18196adcaf5d51f82f2d32 to your computer and use it in GitHub Desktop.
Used createReadStream to read data from a Cloud Storage file
app.get('/', async (req, res) => {
const bucket = storage.bucket(bucketName);
const file = bucket.file(fileName);
const readStream = file.createReadStream();
//Pipe data from the read-stream into the HTTP response body
readStream.pipe(res);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment