Skip to content

Object

List all objects in a Smart Bucket or regular bucket. The bucket parameter (ID) is used to identify the bucket to list objects from.

import Raindrop from '@liquidmetal-ai/lm-raindrop';
const client = new Raindrop({
apiKey: process.env['RAINDROP_API_KEY'], // This is the default and can be omitted
});
async function main() {
const object = await client.object.list('bucket');
console.log(object.objects);
}
main();

Upload Object

Upload a file to a Smart Bucket or regular bucket. The bucket parameter (ID) is used to identify the bucket to upload to. The key is the path to the object in the bucket.

import Raindrop from '@liquidmetal-ai/lm-raindrop';
const client = new Raindrop({
apiKey: process.env['RAINDROP_API_KEY'], // This is the default and can be omitted
});
async function main() {
const response = await client.object.upload('key', {
bucket: 'bucket',
body: fs.createReadStream('path/to/file'),
});
console.log(response.bucket);
}
main();

Download Object

Download a file from a Smart Bucket or regular bucket. The bucket parameter (ID) is used to identify the bucket to download from. The key is the path to the object in the bucket.

import Raindrop from '@liquidmetal-ai/lm-raindrop';
const client = new Raindrop({
apiKey: process.env['RAINDROP_API_KEY'], // This is the default and can be omitted
});
async function main() {
const response = await client.object.download('key', { bucket: 'bucket' });
console.log(response);
const content = await response.blob();
console.log(content);
}
main();

Delete Object

Delete a file from a Smart Bucket or regular bucket. The bucket parameter (ID) is used to identify the bucket to delete from. The key is the path to the object in the bucket.

import Raindrop from '@liquidmetal-ai/lm-raindrop';
const client = new Raindrop({
apiKey: process.env['RAINDROP_API_KEY'], // This is the default and can be omitted
});
async function main() {
const object = await client.object.delete('key', { bucket: 'bucket' });
console.log(object.success);
}
main();