Socket
Socket
Sign inDemoInstall

@aws-sdk/node-config-provider

Package Overview
Dependencies
4
Maintainers
7
Versions
118
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/node-config-provider


Version published
Weekly downloads
3.1M
decreased by-19.48%
Maintainers
7
Install size
673 kB
Created
Weekly downloads
 

Package description

What is @aws-sdk/node-config-provider?

The @aws-sdk/node-config-provider package is part of the AWS SDK for JavaScript. It provides utilities for loading configuration settings for AWS SDK clients in Node.js environments. This package helps in managing configuration options such as credentials, region, and other settings required to interact with AWS services.

What are @aws-sdk/node-config-provider's main functionalities?

Load Configuration from Environment Variables

This feature allows you to load configuration settings directly from environment variables. This is useful for managing sensitive information like AWS credentials and region settings without hardcoding them in your application.

const { fromEnv } = require('@aws-sdk/node-config-provider');
const config = fromEnv();
console.log(config);

Load Configuration from Shared Config Files

This feature enables loading configuration settings from shared AWS config files, typically located in the user's home directory. This is useful for managing multiple profiles and settings in a centralized manner.

const { fromSharedConfigFiles } = require('@aws-sdk/node-config-provider');
const config = fromSharedConfigFiles();
console.log(config);

Load Configuration from a Custom Source

This feature allows you to load configuration settings from a custom source, such as hardcoded values or a custom configuration file. This provides flexibility in how you manage and load your AWS configuration settings.

const { fromStatic } = require('@aws-sdk/node-config-provider');
const config = fromStatic({ region: 'us-west-2', credentials: { accessKeyId: 'AKIA...', secretAccessKey: 'SECRET...' } });
console.log(config);

Other packages similar to @aws-sdk/node-config-provider

Changelog

Source

3.23.0 (2021-07-23)

Bug Fixes

  • client-sts: duplicate stripInternal entry in tsconfig (#2545) (e7bcbbc)
  • clients: allow undefined configuration (#2617) (a004d15)
  • smithy-client: export type explicitly (#2598) (e643735), closes #2597
  • bump up tslib to 2.3.0 (#2601) (7040faa)

Features

  • clients: change runtime config from constant to provider functions (#2574) (5eca565)

Readme

Source

@aws-sdk/node-config-provider

NPM version NPM downloads

FAQs

Last updated on 23 Jul 2021

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc