Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

reaction-file-collections-sa-s3

Package Overview
Dependencies
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reaction-file-collections-sa-s3

An S3 storage adapter for Reaction Commerce's reaction-file-collections, brought to you by out:grow

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

reaction-file-collections-sa-s3

An AWS S3 adapter for reaction-file-collections, brought to you by out:grow.

Read the reaction-file-collections docs

Installation

Get this package from NPM using the following command:

npm install reaction-file-collections-sa-s3

Configuration

Set up your AWS S3 credentials using environment variables:

# The AWS region your S3 bucket is in
AWS_S3_REGION=us-east-1

# Name of the S3 bucket you want to store your media in
AWS_S3_BUCKET=reaction-media

# An AWS access key with the appropriate S3 permissions
AWS_ACCESS_KEY_ID=QWERTYUIOPASDFGH

# The secret access key that goes with the access key
AWS_SECRET_ACCESS_KEY=<secret_key>

Usage

In your Reaction Commerce back-end code, open /imports/plugins/core/files/server/no-meteor/setUpFileCollections.js.

Replace usages of GridFSStore with S3Store, starting from the import: import S3Store from "@reactioncommerce/file-collections-sa-s3";.

When replacing the GridFSStore constructor with the S3Store one, make sure to pass the following options:

new S3Store({
  name, // Should be provided within buildGFS
  isPublic: true,
  objectACL: "public-read",
  async transformWrite(fileRecord) {
    // Either write your custom transformation code here, or re-use the one from the GridFSStore constructor
  }
})

Help

Need help integrating this plugin into your Reaction Commerce project? Simply looking for expert Reaction Commerce consultants? Want someone to train your team to use Reaction at its fullest?

Whether it is just a one-hour consultation to get you set up or helping your team ship a whole project from start to finish, you can't go wrong by reaching out to us:

Contributing

Pull Requests, Issues and Feature Requests are welcome!

FAQs

Package last updated on 31 May 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc