Skip to content

Instantly share code, notes, and snippets.

@nixon1333
Created August 18, 2014 11:36
Show Gist options
  • Save nixon1333/7c99ec4868715bab1ecc to your computer and use it in GitHub Desktop.
Save nixon1333/7c99ec4868715bab1ecc to your computer and use it in GitHub Desktop.
var knox = require('knox');
var client = knox.createClient({
key: '<api key>'
, secret: '<s3 secrect>'
, bucket: 'tests'
});
var a = "https://s3.amazonaws.com/tests/53f1c7233f3712014-08-06-1024.png"
var image = a.substr(32);
client.del(String(image)).on('response', function(res){
console.log(res.statusCode);
console.log(res.headers);
}).end();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment