Socket
Socket
Sign inDemoInstall

@dapperlabs/react-launch-darkly

Package Overview
Dependencies
2
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @dapperlabs/react-launch-darkly

Convenience component for creating a Launch Darkly feature flags context.


Version published
Weekly downloads
5
increased by400%
Maintainers
3
Install size
1.86 MB
Created
Weekly downloads
 

Readme

Source

react-launch-darkly 🚩

Convenience component for creating a Launch Darkly feature flags context.

values provided on context:

  • isReady: boolean indicating connection to LD service has been established.
  • all feature flags will be provided directly on the context value as well.

Provider Props

  • clientSideId: your launch darkly client id
  • initialFlags: the set of flags to use on mount. Example: if you use SSR, you should fetch your initial flags from the API and set them here so that initial render has the correct values. These will get overwritten as necessary from the connection to LD when ready.
  • user: (optional) user object to define the user for fetching flags from launch darkly. If none is provided, will default to an anonymous user. See Launch Darkly documentation on user objects

Setup

Import the provider and wrap your application in it.

import { FeatureFlagsProvider } from '@dapperlabs/react-launch-darkly';

function Root() {
  return (
    <FeatureFlagsProvider
      clientSideId={process.env.LAUNCH_DARKLY_CLIENT_SIDE_ID}
      initialFlags={{ foo: 'bar' }}
      user={{
        key: user.id,
        email: user.email,
      }}
    >
      <MyDApp />
    </FeatureFlagsProvider>
  )
}

Context

Context is directly available via import { FeatureFlagsContext } from '@dapperlabs/react-launch-darkly' and can be consumed however you'd like:

  • useContext(FeatureFlagsContext) 👈IDEAL 😎
  • static contextType = FeatureFlagsContext
  • <FeatureFlagsContext.Consumer />

withFeatureFlags

Decorates your component with the above context values as a prop called featureFlags.

FAQs

Last updated on 06 Aug 2019

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