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

@mskii/s3-manager

v1.0.4

Published

S3上のオブジェクトを操作するクラス

Downloads

7

Readme

@mskii/s3-manager

@mskii/s3-manager は、AWS S3 オブジェクトを簡単かつ効率的に操作するための Node.js モジュールです。このモジュールを使用することで、S3 バケット内のファイルのアップロード、ダウンロード、削除、およびその他の操作を行うことができます。

特徴

  • ファイルのアップロードとダウンロード
  • ディレクトリの一括アップロードとダウンロード
  • ファイルの存在確認
  • ファイルサイズの取得
  • S3 ディレクトリ内のファイルリストの取得
  • etc.

インストール

npm install @mskii/s3-manager

使い方

下記は一部の機能の一例です。 その他の機能については source を確認してください。

基本的なセットアップ

const S3Manager = require('@mskii/s3-manager');
const s3 = await S3Manager.create({ configFilePath: './config.json' });

ファイルのアップロード

s3Manager.putS3File('path/to/local/file.txt', 'path/to/s3/file.txt')
  .then(() => {
    console.log('ファイルのアップロードに成功');
  })
  .catch(err => {
    console.error('ファイルのアップロードエラー:', err);
  });

ファイルのダウンロード

s3Manager.getS3File('path/to/s3/file.txt', 'path/to/local/file.txt')
  .then(() => {
    console.log('ファイルのダウンロードに成功');
  })
  .catch(err => {
    console.error('ファイルのダウンロードエラー:', err);
  });

ファイルの存在確認

s3Manager.isFileExistence('path/to/s3/file.txt')
  .then(exists => {
    console.log(`ファイルは存在${exists ? 'する' : 'しない'}`);
  })
  .catch(err => {
    console.error('ファイルの存在確認エラー:', err);
  });

ディレクトリのアップロード

s3Manager.putDirectoryToS3('path/to/local/directory', 'path/to/s3/directory')
  .then(() => {
    console.log('ディレクトリのアップロードに成功');
  })
  .catch(err => {
    console.error('ディレクトリのアップロードエラー:', err);
  });

config パラメータ

@mskii/s3-manager を使用する際に設定する config パラメータの一覧です。

| パラメータ名 | 必須/オプショナル | 説明 | 設定例 | |-----------------|-----------------|--------------------------------------------|--------------------| | ACCESS_KEY_ID | 必須 | AWS アクセスキーID | あなたのAWSアクセスキーID | | SECRET_ACCESS_KEY | 必須 | AWS シークレットアクセスキー | あなたのAWSシークレットアクセスキー | | BUCKET_NAME | optional(default=null) | デフォルトの S3 バケット名。各メソッド引数での指定も可能 | example-bucket | | REGION_NAME | optional(default=ap-northeast-1) | AWS リージョン名 | ap-northeast-1 |

設定例

以下は config.json を使った設定例です。

{
  "ACCESS_KEY_ID": "あなたのAWSアクセスキーID",
  "SECRET_ACCESS_KEY": "あなたのAWSシークレットアクセスキー",
  "BUCKET_NAME": "任意のバケット名",
  "REGION_NAME": "ap-northeast-1"
}

この設定ファイルは、S3Manager.create() メソッドで使用できます。

ライセンス

MIT

著者

mskii