Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@mskii/s3-manager
Advanced tools
@mskii/s3-manager
は、AWS S3 オブジェクトを簡単かつ効率的に操作するための Node.js モジュールです。このモジュールを使用することで、S3 バケット内のファイルのアップロード、ダウンロード、削除、およびその他の操作を行うことができます。
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
FAQs
S3上のオブジェクトを操作するクラス
The npm package @mskii/s3-manager receives a total of 1 weekly downloads. As such, @mskii/s3-manager popularity was classified as not popular.
We found that @mskii/s3-manager demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.