Skip to content

Instantly share code, notes, and snippets.

@mhemrg
Created August 12, 2019 07:06
Show Gist options
  • Save mhemrg/82d3685fa837b2015317078cd7dfb798 to your computer and use it in GitHub Desktop.
Save mhemrg/82d3685fa837b2015317078cd7dfb798 to your computer and use it in GitHub Desktop.
Liara | S3 list objects in ExpressJS
let result=[];
let stream = liaraClient.listObjects('ic-default-barber','', true);
stream.on('data', (obj) => {
result.push(obj.name);
});
stream.on('end', () => {
res.json({result: result});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment