I upload files in many different ways to my s3 bucket.
In python i could use boto like this:
from boto.s3.connection import S3Connection
conn = S3Connection('access-key','secret-access-key')
bucket = conn.get_bucket('bucket')
for key in bucket.list():
print key.name
In node I have used knox to connect to buckets to get urls, but how could I iterate through the keys in node to see all files in my bucket?