Skip to content

Filesrocket service to manage files from Amazon Storage S3

License

Notifications You must be signed in to change notification settings

filesrocket/filesrocket-amazons3

Repository files navigation

filesrocket-amazons3

npm version JavaScript Style Guide

Filesrocket service to manage your files with Amazon S3

Install

npm i filesrocket-amazons3

Usage

To use the service add the following content.

import { Filesrocket } from "filesrocket";
import { AmazonS3FileService } from "filesrocket-amazons3";

// Initialize filesrocket
const filesrocket = new Filesrocket();

// Setting service
const amazons3 = new AmazonS3FileService({
  Pagination: { default: 15, max: 50 },
  Bucket: "<Your Bucket>",
  region: "<Your Region>",
  credentials: {
    accessKeyId: "<Your ACCESS_KEY>",
    secretAccessKey: "<Your SECRET_KEY>"
  }
});

// Register services
filesrocket.register("amazons3", amazons3)

// Recovering service
const service = filesrocket.service("amazons3")

// Recovering controller
const controller = filesrocket.controller("amazons3")

Note: To use this service, you need to have an account, enter here and follow the steps.

About

Filesrocket service to manage files from Amazon Storage S3

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages