Socket
Socket
Sign inDemoInstall

aws-os-connection

Package Overview
Dependencies
46
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    aws-os-connection

AWS connection for the @opensearch-project/opensearch OpenSearch client


Version published
Maintainers
1
Install size
30.6 kB
Created

Readme

Source

AWS ES Connection

AWS ES connection for the new OpenSearch client (@opensearch-project/opensearch)

Thanks to ChristopherGillis and as well as the contributors to the Acuris version of this library. I've simply added an action to release this updated OpenSearch version to NPM. I'll continue to maintain this as needed, though hopefully AWS intergrates this directly into their client at some point.

PRs/Issues welcome.

Installation

Just add this library with your favorite Node package manager. Examples below.

aws-sdk and @opensearch-project/opensearch are required peer dependencies for this library to function, so make sure you have both of those installed.

yarn add aws-os-connection aws-sdk @opensearch-project/opensearch

# or

npm install aws-os-connection aws-sdk @opensearch-project/opensearch

Usage

Javascript:

const { Client } = require('@opensearch-project/opensearch')
const { createAWSConnection, awsGetCredentials } = require('aws-os-connection')

const awsCredentials = await awsGetCredentials()
const AWSConnection = createAWSConnection(awsCredentials)
const client = new Client({
  ...AWSConnection,
  node: 'https://node-name.eu-west-1.es.amazonaws.com'
})

// inside async func
await client.cat.help()

Typescript:

import { createAWSConnection, awsGetCredentials } from 'aws-os-connection'
import AWS from 'aws-sdk'
import { Client } from '@opensearch-project/opensearch'

const awsCredentials = await awsGetCredentials()
const AWSConnection = createAWSConnection(awsCredentials)
const client = new Client({
  ...AWSConnection,
  node: 'https://node-name.eu-west-1.es.amazonaws.com'
})

// inside async func
await client.cat.help()

How does it work?

This package creates a Connection class that signs the requests to AWS OpenSearch and a Transport class that checks that the AWS credentials haven't expired before every call, and refreshes them when needed.

Developer notes

Running the tests

Make sure that your AWS credentials are available to your env, for example you could set them in your ENV.

You need a running AWS ES instance for the tests to run against. Set the endpoint URL as the env AWS_ES_ENDPOINT.

AWS_ES_ENDPOINT=https://xxxx.es.amazonaws.com yarn test

Tested versions

This package has been tested on versions of the official OpenSearch client up to 2.0.0.

Keywords

FAQs

Last updated on 31 Aug 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc