Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.07 KB

README.md

File metadata and controls

45 lines (32 loc) · 1.07 KB

Cloudhound

npm Build Status Coverage Status license github-issues

Flexible and fluent interface finding files in the cloud

⚠️ 🔥 This is an early release 🔥 ⚠️

Installation

npm install --save cloudhound

Usage

import {S3Hound} from 'cloudhound';

const objects = await S3Hound.newQuery({ bucket: 'myBucket' })
  .prefix('csv')
  .limit(50)
  .find();

console.log(objects);

Documentation

For more examples and API details, see API documentation

Test

npm test

To generate a test coverage report:

npm run coverage

Contributing

See contributing guide