Fastly SDK reference

This SDK is in beta

Development work on the Fastly SDK is ongoing. The SDK is fully tested and we consider it production-ready, however, we are actively soliciting feedback on its usage. Some external APIs could change prior to the v1 release.

Overview

This topic documents how to get started with the Fastly SDK, and links to reference information on all of the supported features.

SDK quick links

LaunchDarkly’s SDKs are open source. In addition to this reference guide, we provide source, API reference documentation, and a sample application:

ResourceLocation
SDK API documentation

SDK API docs

GitHub repository

LaunchDarkly Fastly SDK

Sample application

Example app

Published modulenpm
This SDK requires LaunchDarkly's Fastly integration

Configure the Fastly integration to use this SDK successfully. To learn more, read Fastly.

The Fastly integration is only available to customers on select plans. To learn more, read about our pricing. To upgrade your plan, contact Sales.

Get started

After you complete the Create a Fastly integration process in an existing project, follow these instructions to start using the LaunchDarkly Fastly SDK:

Install the SDK

First, install the Fastly SDK as a dependency in your application using your application’s dependency manager.

Here’s how:

$yarn add @launchdarkly/fastly-server-sdk

Next, import the LaunchDarkly client in your application code:

Import
1import { KVStore } from 'fastly:kv-store';
2import { init } from '@launchdarkly/fastly-server-sdk';

Initialize the client

After you install and import the SDK, configure a Fastly KV Store. Then, initialize an LDClient using your LaunchDarkly client-side ID, the Fastly KV store name, and the Fastly events backend name. The client must be initialized when processing requests.

Here’s how:

Initialize the client
1const KV_STORE_NAME = 'launchdarkly';
2const EVENTS_BACKEND_NAME = 'launchdarkly';
3const store = new KVStore(KV_STORE_NAME);
4
5async function handleRequest(event: FetchEvent) {
6 const ldClient = init('client-side-id-123abc', store, {
7 eventsBackendName: EVENTS_BACKEND_NAME,
8 });
9
10 await ldClient.waitForInitialization();
11
12 // The rest of your handler code goes here
13}

The client must be initialized and used when processing requests, not during built-time initialization.

The Fastly SDK uses a client-side ID

The Fastly SDK uses a client-side ID to associate the LaunchDarkly environment with the Fastly integration. Client-side IDs are specific to each project and environment. They are available from the Environments list for each project. To learn more about client-side IDs, read Keys.

Events are enabled by default in the Fastly SDK, which means the Fastly SDK supports Experimentation and metrics use cases by default. To learn more, read Experimentation and metric events.

Evaluate a flag

After you initialize the client, wait for the waitForInitialization function to resolve. When waitForInitialization is resolved, the client can serve feature flags.

Using the client, you can check which variation a particular context will receive for a given feature flag. In your Fastly application, place the variation code so that it is invoked as needed.

Here is an example:

Evaluate a flag
1import type { LDContext } from '@launchdarkly/js-server-sdk-common';
2
3const ldContext: LDContext = {
4 kind: 'org',
5 key: 'org-key-123abc',
6 someAttribute: 'example-attribute-value',
7}
8const flagValue = await ldClient.variation('flag-key-123abc', ldContext, false)

The SDK caches all KV data during initialization to reduce the number of backend requests needed to fetch KV data. This means changes to feature flags or segments will not be picked up during the lifecycle of a single request instance.

Flush events

You must flush events before your worker exits to ensure that they are sent back to LaunchDarkly. To learn more, read Flushing events.

Supported features