react-launch-darkly
react-launch-darkly copied to clipboard
Simple component helpers to support LaunchDarkly in your React app.
Fixes #87 - clarify "SSR" in the readme Originally written in #88 by https://github.com/bostmic
Overrides are great for testing purposes (and our dev/staging envs), but I would like to disable query param overriding in our production build. Adding this as a param on ``...
We're using the `FeatureFlag` to render components based on LD flags and works sharp. But now we need to know if we need to avoid rendering a whole tree based...
Documentation does not indicate SSR stands for react's server side rendering. It would be helpful if the documentation defined the definition.
Hi, would you be open to a PR that allows the render callback to be passed in as the `children` prop? This would allow people to keep the render logic...
The current addition of `identify` via the exported `utils` is a bit cumbersome to setup and doesn't really follow the same flow when working with the component helpers. In an...
The current API uses a component and callback which essentially forces the use of a class component. This is fine for smaller changes, but it doesn't compose well with other...
In order to decouple A/B tested components from `` initialization, it would be great to have `` gracefully handle uninitialized LD. (It would log a warning, of course.) Similarly, if...
Refactor `lib/utils.js` by abstracting out each of the functions into separate files and placed under `lib`: - `getLocation`, I believe this was only added to allow easier mocking. We should...