Socket
Socket
Sign inDemoInstall

@aws-sdk/node-config-provider

Package Overview
Dependencies
Maintainers
5
Versions
118
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/node-config-provider

Load config default values from ini config files and environmental variable


Version published
Weekly downloads
3.4M
decreased by-1.23%
Maintainers
5
Weekly downloads
 
Created

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

FAQs

Package last updated on 11 Nov 2022

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