npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@push.rocks/smartbucket

v3.1.0

Published

A TypeScript library offering simple and cloud-agnostic object storage with advanced features like bucket creation, file and directory management, and data streaming.

Downloads

576

Readme

@push.rocks/smartbucket

A TypeScript library for cloud-independent object storage, providing features like bucket creation, file and directory management, and data streaming.

Install

To install @push.rocks/smartbucket, you need to have Node.js and npm (Node Package Manager) installed. If they are installed, you can add @push.rocks/smartbucket to your project by running the following command in your project's root directory:

npm install @push.rocks/smartbucket --save

This command will download and install @push.rocks/smartbucket along with its required dependencies into your project's node_modules directory and save it as a dependency in your project's package.json file.

Usage

@push.rocks/smartbucket is a TypeScript module designed to provide simple cloud-independent object storage functionality. It wraps various cloud storage providers such as AWS S3, Google Cloud Storage, and others, offering a unified API to manage storage buckets and objects within those buckets.

In this guide, we will delve into the usage of SmartBucket, covering its full range of features from setting up the library to advanced usage scenarios.

Table of Contents

  1. Setting Up
  2. Creating a New Bucket
  3. Listing Buckets
  4. Working with Files
  5. Working with Directories
  6. Advanced Features

Setting Up

First, ensure you are using ECMAScript modules (ESM) and TypeScript in your project for best compatibility. Here's how to import and initialize SmartBucket in a TypeScript file:

import {
  SmartBucket,
  Bucket,
  Directory,
  File
} from '@push.rocks/smartbucket';

const mySmartBucket = new SmartBucket({
  accessKey: "yourAccessKey",
  accessSecret: "yourSecretKey",
  endpoint: "yourEndpointURL",
  port: 443,            // Default is 443, can be customized for specific endpoint
  useSsl: true          // Defaults to true
});

Make sure to replace "yourAccessKey", "yourSecretKey", and "yourEndpointURL" with your actual credentials and endpoint URL. The port and useSsl options are optional and can be omitted if the defaults are acceptable.

Creating a New Bucket

To create a new bucket:

async function createBucket(bucketName: string) {
  try {
    const myBucket: Bucket = await mySmartBucket.createBucket(bucketName);
    console.log(`Bucket ${bucketName} created successfully.`);
  } catch (error) {
    console.error("Error creating bucket:", error);
  }
}

// Use the function
createBucket("exampleBucket");

Bucket names must be unique across the storage service.

Listing Buckets

Currently, SmartBucket does not include a direct method to list all buckets, but you can access the underlying client provided by the cloud storage SDK to perform such operations, depending on the SDK's capabilities.

Working with Files

Uploading Files

To upload an object to a bucket:

async function uploadFile(bucketName: string, filePath: string, fileContent: Buffer | string) {
  const myBucket: Bucket = await mySmartBucket.getBucketByName(bucketName);
  if (myBucket) {
    await myBucket.fastPut({ path: filePath, contents: fileContent });
    console.log(`File uploaded to ${bucketName} at ${filePath}`);
  } else {
    console.error(`Bucket ${bucketName} does not exist.`);
  }
}

// Use the function
uploadFile("exampleBucket", "path/to/object.txt", "Hello, world!");

Downloading Files

To download an object:

async function downloadFile(bucketName: string, filePath: string) {
  const myBucket: Bucket = await mySmartBucket.getBucketByName(bucketName);
  if (myBucket) {
    const fileContent: Buffer = await myBucket.fastGet({ path: filePath });
    console.log("Downloaded file content:", fileContent.toString());
  } else {
    console.error(`Bucket ${bucketName} does not exist.`);
  }
}

// Use the function
downloadFile("exampleBucket", "path/to/object.txt");

Deleting Files

To delete an object from a bucket:

async function deleteFile(bucketName: string, filePath: string) {
  const myBucket: Bucket = await mySmartBucket.getBucketByName(bucketName);
  if (myBucket) {
    await myBucket.fastRemove({ path: filePath });
    console.log(`File at ${filePath} deleted from ${bucketName}.`);
  } else {
    console.error(`Bucket ${bucketName} does not exist.`);
  }
}

// Use the function
deleteFile("exampleBucket", "path/to/object.txt");

Streaming Files

SmartBucket allows you to work with file streams, which can be useful for handling large files.

To read a file as a stream:

import { ReplaySubject } from '@push.rocks/smartrx';

async function readFileStream(bucketName: string, filePath: string) {
  const myBucket: Bucket = await mySmartBucket.getBucketByName(bucketName);
  if (myBucket) {
    const fileStream: ReplaySubject<Buffer> = await myBucket.fastGetStream({ path: filePath });
    fileStream.subscribe({
      next(chunk: Buffer) {
        console.log("Chunk received:", chunk.toString());
      },
      complete() {
        console.log("File read completed.");
      },
      error(err) {
        console.error("Error reading file stream:", err);
      }
    });
  } else {
    console.error(`Bucket ${bucketName} does not exist.`);
  }
}

// Use the function
readFileStream("exampleBucket", "path/to/object.txt");

To write a file as a stream:

import { Readable } from 'stream';

async function writeFileStream(bucketName: string, filePath: string, readableStream: Readable) {
  const myBucket: Bucket = await mySmartBucket.getBucketByName(bucketName);
  if (myBucket) {
    await myBucket.fastPutStream({ path: filePath, dataStream: readableStream });
    console.log(`File streamed to ${bucketName} at ${filePath}`);
  } else {
    console.error(`Bucket ${bucketName} does not exist.`);
  }
}

// Create a readable stream from a string
const readable = new Readable();
readable.push('Hello world streamed as a file!');
readable.push(null); // End of stream

// Use the function
writeFileStream("exampleBucket", "path/to/streamedObject.txt", readable);

Working with Directories

@push.rocks/smartbucket offers abstractions for directories within buckets for easier object management. You can create, list, and delete directories using the Directory class.

To list the contents of a directory:

async function listDirectoryContents(bucketName: string, directoryPath: string) {
  const myBucket: Bucket = await mySmartBucket.getBucketByName(bucketName);
  if (myBucket) {
    const baseDirectory: Directory = await myBucket.getBaseDirectory();
    const targetDirectory: Directory = await baseDirectory.getSubDirectoryByName(directoryPath);
    
    console.log('Listing directories:');
    const directories = await targetDirectory.listDirectories();
    directories.forEach(dir => {
      console.log(`- ${dir.name}`);
    });

    console.log('Listing files:');
    const files = await targetDirectory.listFiles();
    files.forEach(file => {
      console.log(`- ${file.name}`);
    });
  } else {
    console.error(`Bucket ${bucketName} does not exist.`);
  }
}

// Use the function
listDirectoryContents("exampleBucket", "some/directory/path");

To create a file within a directory:

async function createFileInDirectory(bucketName: string, directoryPath: string, fileName: string, fileContent: string) {
  const myBucket: Bucket = await mySmartBucket.getBucketByName(bucketName);
  if (myBucket) {
    const baseDirectory: Directory = await myBucket.getBaseDirectory();
    const targetDirectory: Directory = await baseDirectory.getSubDirectoryByName(directoryPath);
    await targetDirectory.createEmptyFile(fileName); // Create an empty file
    const file = new File({ directoryRefArg: targetDirectory, fileName });
    await file.updateWithContents({ contents: fileContent });
    console.log(`File created: ${fileName}`);
  } else {
    console.error(`Bucket ${bucketName} does not exist.`);
  }
}

// Use the function
createFileInDirectory("exampleBucket", "some/directory", "newfile.txt", "Hello, world!");

Advanced Features

Bucket Policies

Manage bucket policies to control access permissions. This feature depends on the policies provided by the storage service (e.g., AWS S3, MinIO).

Object Metadata

Retrieve and modify object metadata. Metadata can be useful for storing additional information about an object.

To retrieve metadata:

async function getObjectMetadata(bucketName: string, filePath: string) {
  const myBucket: Bucket = await mySmartBucket.getBucketByName(bucketName);
  if (myBucket) {
    const metadata = await mySmartBucket.minioClient.statObject(bucketName, filePath);
    console.log("Object metadata:", metadata);
  } else {
    console.error(`Bucket ${bucketName} does not exist.`);
  }
}

// Use the function
getObjectMetadata("exampleBucket", "path/to/object.txt");

To update metadata:

async function updateObjectMetadata(bucketName: string, filePath: string, newMetadata: { [key: string]: string }) {
  const myBucket: Bucket = await mySmartBucket.getBucketByName(bucketName);
  if (myBucket) {
    await myBucket.copyObject({
      objectKey: filePath,
      nativeMetadata: newMetadata,
      deleteExistingNativeMetadata: false,
    });
    console.log(`Metadata updated for ${filePath}`);
  } else {
    console.error(`Bucket ${bucketName} does not exist.`);
  }
}

// Use the function
updateObjectMetadata("exampleBucket", "path/to/object.txt", {
  customKey: "customValue"
});

Cloud Agnostic

@push.rocks/smartbucket is designed to work with multiple cloud providers, allowing for easier migration or multi-cloud strategies. This means you can switch from one provider to another with minimal changes to your codebase.

Remember, each cloud provider has specific features and limitations. @push.rocks/smartbucket aims to abstract common functionalities, but always refer to the specific cloud provider's documentation for advanced features or limitations.

This guide covers the basic to advanced scenarios of using @push.rocks/smartbucket. For further details, refer to the API documentation and examples.

License and Legal Information

This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the license file within this repository.

Please note: The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.

Trademarks

This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.

Company Information

Task Venture Capital GmbH
Registered at District court Bremen HRB 35230 HB, Germany

For any legal inquiries or if you require further information, please contact us via email at [email protected].

By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.