我正在使用Redux,我正在添加AWS SDK,但你也可以想到Facebook SDK。要使用它我需要初始化它
// Import the AWS SDK
var AWS = require('aws-sdk');
// Set credentials and region
// This can also be done directly on the service client
AWS.config.update({region: 'us-west-1', credentials: {YOUR_CREDENTIALS}});
var s3 = new AWS.S3({apiVersion: '2006-03-01'});
我是否需要在需要使用它的任何地方配置它?什么是最佳做法?