Gathering detailed insights and metrics for launchdarkly-node-server-sdk-dynamodb
Gathering detailed insights and metrics for launchdarkly-node-server-sdk-dynamodb
Gathering detailed insights and metrics for launchdarkly-node-server-sdk-dynamodb
Gathering detailed insights and metrics for launchdarkly-node-server-sdk-dynamodb
@launchdarkly/node-server-sdk-dynamodb
DynamoDB-backed feature store for the LaunchDarkly Server-Side SDK for Node.js
launchdarkly-node-server-sdk
LaunchDarkly Server-Side SDK for Node.js
@launchdarkly/node-server-sdk
LaunchDarkly Server-Side SDK for Node.js
launchdarkly-js-client-sdk
LaunchDarkly SDK for JavaScript
npm install launchdarkly-node-server-sdk-dynamodb
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
4 Stars
81 Commits
5 Forks
41 Watching
8 Branches
172 Contributors
Updated on 30 May 2024
JavaScript (97.17%)
TypeScript (2.83%)
Cumulative downloads
Total Downloads
Last day
51.7%
1,926
Compared to previous day
Last week
9%
27,035
Compared to previous week
Last month
2.9%
120,752
Compared to previous month
Last year
5.9%
1,091,584
Compared to previous year
1
2
This integration in this does not work with version 8.0+ of the Node.js Server-Side SDK. Future development of this integration will be done here node-server-sdk-dynamodb. Please note the package has also been renamed from launchdarkly-node-server-sdk-dynamodb
to @launchdarkly/node-server-sdk-dynamodb
.
As mentioned in the node server sdk changelog, the launchdarkly-node-server-sdk
project has been renamed to @launchdarkly/node-server-sdk
. All future releases will be made from the new repository. Please consider upgrading and filing potential requests in that repository's issue tracker.
This library provides a DynamoDB-backed persistence mechanism (feature store) for the LaunchDarkly Node.js SDK, replacing the default in-memory feature store. It uses the AWS SDK for Node.js.
The minimum version of the LaunchDarkly Node.js SDK for use with this library is 6.2.0.
For more information, read the SDK features guide.
TypeScript API documentation is here.
This assumes that you have already installed the LaunchDarkly Node.js SDK.
In DynamoDB, create a table which has the following schema: a partition key called "namespace" and a sort key called "key", both with a string type. The LaunchDarkly library does not create the table automatically, because it has no way of knowing what additional properties (such as permissions and throughput) you would want it to have.
Install this package with npm
:
npm install launchdarkly-node-server-sdk-dynamodb --save
If your application does not already have its own dependency on the aws-sdk
package, and if it will not be running in AWS Lambda, add aws-sdk
as well:
npm install aws-sdk --save
The launchdarkly-node-server-sdk-dynamodb
package does not provide aws-sdk
as a transitive dependency, because it is provided automatically by the Lambda runtime and this would unnecessarily increase the size of applications deployed in Lambda. Therefore, if you are not using Lambda you need to provide aws-sdk
separately.
Require the package:
const { DynamoDBFeatureStore } = require('launchdarkly-node-server-sdk-dynamodb');
When configuring your SDK client, add the DynamoDB feature store:
const store = DynamoDBFeatureStore('YOUR TABLE NAME');
const config = { featureStore: store };
const client = LaunchDarkly.init('YOUR SDK KEY', config);
By default, the DynamoDB client will try to get your AWS credentials and region name from environment variables and/or local configuration files, as described in the AWS SDK documentation. You can also specify any valid DynamoDB client options like this:
const dynamoDBOptions = { accessKeyId: 'YOUR KEY', secretAccessKey: 'YOUR SECRET' };
const store = DynamoDBFeatureStore('YOUR TABLE NAME', { clientOptions: dynamoDBOptions });
Alternatively, if you already have a fully configured DynamoDB client object, you can tell LaunchDarkly to use that:
const store = DynamoDBFeatureStore('YOUR TABLE NAME', { dynamoDBClient: myDynamoDBClientInstance });
If you are running a LaunchDarkly Relay Proxy instance, or any other process that will prepopulate the DynamoDB table with feature flags from LaunchDarkly, you can use daemon mode, so that the SDK retrieves flag data only from DynamoDB and does not communicate directly with LaunchDarkly. This is controlled by the SDK's useLdd
option:
const config = { featureStore: store, useLdd: true };
const client = LaunchDarkly.init('YOUR SDK KEY', config);
If the same DynamoDB table is being shared by SDK clients for different LaunchDarkly environments, set the prefix
option to a different short string for each one to keep the keys from colliding:
const store = DynamoDBFeatureStore('YOUR TABLE NAME', { prefix: 'env1' });
To reduce traffic to DynamoDB, there is an optional in-memory cache that retains the last known data for a configurable amount of time. This is on by default; to turn it off (and guarantee that the latest feature flag data will always be retrieved from DynamoDB for every flag evaluation), configure the store as follows:
const store = DynamoDBFeatureStore('YOUR TABLE NAME', { cacheTTL: 0 });
DynamoDB has a 400KB limit on the size of any data item. For the LaunchDarkly SDK, a data item consists of the JSON representation of an individual feature flag or segment configuration, plus a few smaller attributes. You can see the format and size of these representations by querying https://sdk.launchdarkly.com/flags/latest-all
and setting the Authorization
header to your SDK key.
Most flags and segments won't be nearly as big as 400KB, but they could be if for instance you have a long list of user keys for individual user targeting. If the flag or segment representation is too large, it cannot be stored in DynamoDB. To avoid disrupting storage and evaluation of other unrelated feature flags, the SDK will simply skip storing that individual flag or segment, and will log a message (at ERROR level) describing the problem. For example:
The item "my-flag-key" in "features" was too large to store in DynamoDB and was dropped
If caching is enabled in your configuration, the flag or segment may still be available in the SDK from the in-memory cache, but do not rely on this. If you see this message, consider redesigning your flag/segment configurations, or else do not use DynamoDB for the environment that contains this data item.
This limitation does not apply to target lists in Big Segments.
A future version of the LaunchDarkly DynamoDB integration may use different strategies to work around this limitation, such as compressing the data or dividing it into multiple items. However, this integration is required to be interoperable with the DynamoDB integrations used by all the other LaunchDarkly SDKs and by the Relay Proxy, so any such change will only be made as part of a larger cross-platform release.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
security policy file detected
Details
Reason
license file detected
Details
Reason
Found 8/18 approved changesets -- score normalized to 4
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
Project has not signed or included provenance with any releases.
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More