webcam-s3
v1.0.1
Published
This package helps to send images from webcamURLs to an Amazon S3 Bucket of your choice.
Downloads
5
Maintainers
Readme
webcam-s3
This package helps to send images from webcamURLs to an Amazon S3 Bucket of your choice.
usage
let send = require('webcam-s3')(config).send
const config = {
accessKeyId: 'your-access-key-id-here',
secretAccessKey: 'your-secret-access-key-here',
region: 'us-east-1'
}
send('http://imageurl', 'filename.jpg', 'bucket-name')
.then(data => {
// saved! treat data, maybe?
}).catch(err => {
// treats err
})
That's it! Have fun!