appcore-s3
v2.1.0
Published
Amazon S3 file upload for appcore.
Downloads
5
Readme
Amazon S3 Upload Adaptor for Appcore Files
This is an S3 upload adaptor for Appcore files. It allows file data to be saved at any arbitrary path in an S3 bucket.
app.use(require("appcore-s3"));
// later
app.ready(function() {
app.files.upload(fileData, {
filename: "myfile.jpg",
s3path: "/user123/myfile.jpg" // the path in the bucket, required
}, function(err, res) {
res.url; // -> The full S3 url to the file
});
});
The following application config keys need to be set:
s3.key
- S3 access keys3.secret
- S3 secret tokens3.bucket
- S3 bucket name