Flexible and fluent interface finding files in the cloud
npm install --save cloudhound
import {S3Hound} from 'cloudhound';
const objects = await S3Hound.newQuery({ bucket: 'myBucket' })
.prefix('csv')
.limit(50)
.find();
console.log(objects);
For more examples and API details, see API documentation
npm test
To generate a test coverage report:
npm run coverage