npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

feature-toggles-react-sdk

v1.0.4

Published

A react sdk for the free feature toggle service located at https://opensourcefeaturetoggles.com

Downloads

7

Readme

Feature-Toggles-React-SDK

React SDK for opensourcefeaturetoggles.com

Other Repositories that are a part of this project

Javascript SDK

Admin Website

Node Backend

How to Use

Installations

npm install feature-toggles-react-sdk
# or 
yarn add feature-toggles-react-sdk 

Initialize the Client

First create a config object with your project's apiKey and the frequency with which you want the client to check for flag updates. Then pass this config as props to FlagProvider somewhere in your component tree.

Since the client is able to update on regular intervals, any changes done by the project admin will be reflected in real time to the client.

import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import { FlagProvider } from 'feature-toggles-react-sdk'

const config = {
  apiKey : 'YOUR-API-KEY', 
  refreshRate : '5s', 
}

ReactDOM.createRoot(document.getElementById('root')).render(
  
  <React.StrictMode>
    <FlagProvider config={config}>
      <App />
    </FlagProvider>
  </React.StrictMode>,
)

Get Flags

You can check if a feature flag is enabled with the useFlag hook. Simply pass it the feature and variable you are looking for with the format 'featureName.variableName'. This function returns a boolean of whether it is active or not. If the feature/variable combination you pass does not exist in your project or is not enabled for the given environment, the flag will default to false.

import { useFlag } from 'feature-toggles-react-sdk'

function App () {
    let featureFlag = useFlag('feature.variable')

    return (
        <>
            { featureFlag ? <h1>Feature turned on</h1> ? <h1>Feature turned off</h1> }
        </>
    )
}

Get Features

Similar to useFlag, you can check if a feature is enabled with the useFeature hook by passing it the name of a feature. If the feature doesn't exist, the flag defaults to false.

Since features can contain multiple variables, this hook can be useful for enabling/disabling large parts of your application with ease without having to enable/disable many variables.

import { useFeature } from "feature-toggles-react-sdk"

function HomePage () {
  const displayAbout = useFeature('about')

  return (
      <>
          <Header/>
          <Sidebar/>
          { displayAbout ? <About/> : null } 
          <Main/>
      </>
  )
}

Defer flags until fetched

While the feature toggle client makes its initial request, you can defer loading your application until the flags have been loaded. It's important to note that all flags that are called in your application default to false until they are updated by the client.

import { useFlagStatus } from 'feature-toggles-react-sdk';

function MyApp {
  const { flagsReady, flagsError } = useFlagStatus()

  if (!flagsReady) {
    return <Loading />;
  }
  return <MyComponent error={flagsError} />
}