Frequently Asked Questions
How do I install S3.js?
Install via NPM: `npm install s3.js` or include the CDN script tag in your HTML: ``
Can I use S3.js with React?
Yes! Use the `createS3Client` function with hooks:
const s3 = createS3Client({...})(new AWS.S3())
How do I handle large file uploads?
Use the `multipartUpload` function which automatically chunks files > 150MB and manages AWS S3 multipart uploads