No results for ""
EXPAND ALL
  • Home
  • API docs

GIVE DOCS FEEDBACK

Using the JavaScript SDK in Salesforce Lightning Web Components

Read time: 2 minutes
Last edited: Jul 14, 2023

Overview

This guide explains how to configure your Salesforce environment to use the LaunchDarkly JavaScript or React Web client-side SDKs in Lightning Web Components (LWCs).

Salesforce Lightning Web Components are an implementation of standard web components that allow you to leverage HTML, CSS, and JavaScript in a lightweight framework. To learn more, read Introducing Lightning Web Components.

The example code in this guide is extracted snippets. We show it here as if it is being used in a JavaScript class.

Prerequisites

To complete this guide, you must have the following prerequisites:

  • Basic working knowledge of the LaunchDarkly JavaScript client-side SDK or React Web client-side SDK
  • Basic working knowledge of Salesforce Lightning Web Components

Download the LaunchDarkly JavaScript Client

To begin, find the latest version under Releases in the JavaScript SDK GitHub repository. Then download the desired version from https://unpkg.com/launchdarkly-js-client-sdk@<VERSION>/dist/ldclient.min.js.

Set up your Salesforce environment

Next, set up your Salesforce environment. To do this:

  1. Upload the file to your Salesforce organization as a static resource in your org
  2. Enable Lightning Web Security in your org
  3. Add https://*.launchdarkly.com as a CSP Trusted Site, under Manage CSP Trusted Sites

Using the LaunchDarkly client in a Lightning Web Component

In the JavaScript file of your Lightning Web Component, import the static resource:

import ldclient from '@salesforce/resourceUrl/ldclient';

Then, load the imported script for usage in the file, using the Lightning Web Component Platform Resource Loader:

Promise.all([
loadScript(this, ldclient)
])
.then(() => {
// Post Script Load Code Here
})

Finally, initialize the LaunchDarkly client:

const context = {
kind: 'user',
key: 'context-key-123abc'
};
this.LDClient = ldclient.initialize('client-side-id-123abc', context);
await this.LDClient.waitUntilReady();

You can access the flag value using a JavaScript getter method:

get exampleFlag() {
return await this.LDClient.variation['flag-key-123abc', false];
}

To learn more, read LWC Data Binding. You can then use HTML to allow feature flags to control your user interface (UI) display.

Here is an example of an LWC HTML snippet:

<template if:true={exampleFlag}>
Flag evaluation is TRUE
</template>
<template if:false={exampleFlag}>
Flag evaluation is FALSE
</template>

Conclusion

In this guide, we discussed how to use the LaunchDarkly JavaScript and React Web client-side SDKs in Lightning Web Components. This allows you to leverage HTML, CSS, and JavaScript in a lightweight framework.

Want to know more? Start a trial.

Your 14-day trial begins as soon as you sign up. Learn to use LaunchDarkly with the app's built-in tutorial. You'll discover how easy it is to manage the whole feature lifecycle from concept to launch to control.

Want to try it out? Start a trial.