Add Feature Flags to your Next.js application with a single React Hook. This package integrates your Next.js application with HappyKit Flags. Create a free happykit.dev account to get started.
Key Features
- written for Next.js
- integrate using a simple
useFlags()
hook
- only 1 kB in size
- extremely fast flag responses (~50ms)
- supports individual user targeting, custom rules and rollouts
- ssupports server-side rendering and static site generation
Want to see a demo?
Installation
npm install @happykit/flags
Setup
Configure your application in _app.js
.
import { configure } from "@happykit/flags/config";
configure({ envKey: process.env.NEXT_PUBLIC_FLAGS_ENVIRONMENT_KEY });
If you don't have a custom _app.js
yet, see the Custom App
section of the Next.js docs for setup instructions.
Create an account on happykit.dev
to receive your envKey
. You'll find it in the Keys section of your project settings once you created a project.
Make sure the environment variable containing the envKey
starts with NEXT_PUBLIC_
so the value is available on the client side.
Store your envKey
in .env.local
:
NEXT_PUBLIC_FLAGS_ENVIRONMENT_KEY=flags_pub_development_xxxxxxxxxx
Later on, don't forget to also provide the environment variable in production.
There's also a full walkthrough of the setup, which explains the setup in your project and in HappyKit Flags itself.
Basic Usage
You can load flags on the client with a single useFlags
call.
import { useFlags } from "@happykit/flags/client";
export default function FooPage(props) {
const { flags } = useFlags();
return flags.xzibit ? 'Yo dawg' : 'Hello';
}
Or with server-side rendering
import { useFlags } from "@happykit/flags/client";
import { getFlags } from "@happykit/flags/server";
export const getServerSideProps = async (context) => {
const { initialFlagState } = await getFlags({ context });
return { props: { initialFlagState } };
};
export default function FooPage(props) {
const { flags } = useFlags({ initialState: props.initialFlagState });
return flags.xzibit ? 'Yo dawg' : 'Hello';
}
API
configure
configure(options)
options.envKey
(string) required: Your HappyKit Flags Client Id
options.defaultFlags = undefined
(object) optional: Key-value pairs of flags and their values. These values are used as fallbacks in useFlags
and getFlags
. The fallbacks are used while the actual flags are loaded, in case a flag is missing or when the request loading the flags fails for unexpected reasons. If you don't declare defaultFlags
, then the flag values will be undefined
.
options.endpoint = "https://happykit.dev/api/flags"
(string) optional: The endpoint to load flags from. This does not usually need to be changed.
options.loadingTimeout = 3000
(string) optional: A timeout in milliseconds after which any client-side evaluation requests will be aborted. Pass false
to disable this feature. This feature is only supported in browsers which support the AbortController
.
useFlags
This hook loads the flags on the client.
This hook should only ever be rendered once per page.
useFlag(options)
options.user
(object) optional: A user to load the flags for. A user must at least have a key
. See the supported user attributes here. The user information you pass can be used for individual targeting or rules. You can set the persist
attribute on the user to store them in HappyKit for future reference.
options.traits
(object) optional: An object which you have access to in the flag's rules. You can target users based on traits.
options.initialState
(object) optional: In case you preloaded your flags during server-side rendering using getFlags()
, provide the returned state as initialState
. The client will then skip the first request whenever possible and use the provided flags instead. This allows you to get rid of loading states and on the client.
options.revalidateOnFocus
(object) optional: By default the client will revalidate all feature flags when the browser window regains focus. Pass revalidateOnFocus: false
to skip this behaviour.
options.pause
(boolean) optional: Set this to true
to delay fetching of the passed inputs. This is useful in case you need to wait for your user
or traits
to be loaded before kicking off the feature flag evaluation request.
options.loadingTimeout = 3000
(string) optional: A timeout in milliseconds after which any client-side evaluation requests will be aborted. Pass false
to disable this feature. This feature is only supported in browsers which support the AbortController
.
The useFlags
function returns an object we usually call flagBag
. The returned flagBag
is described below.
flagBag
This object is returned from useFlags()
.
flags
(object | null): The feature flags, with the defaults applied.
data
(object | null): The feature flags as loaded from HappyKit, with no defaults applied. null
if an error occurred while loading.
error
(string | null): A string describing the error that occurred while loading the feature flags, null otherwise.
visitorKey
(string | null): The visitor key the feature flags were fetched for.
settled
(boolean): Unless you are providing initialState
, the client will need to fetch the feature flags from the API on mount. In some cases, during static site generation, it will even need to fetch the feature flags from the API even though you provided initialState
. The settled
value will turn true
once the flags have settled on the client. This means that the only way for the value of the flags to change from then on would be if you changed one of the feature flag definitions, or provided different inputs (user
, traits
). Once settled
has turned true, it will not turn back to false. You can use settled
in case you want to wait for the "final" feature flag values before kicking of code splitting.
fetching
(boolean): This is true
whenever the client is loading feature flags. This might happen initially, on rerenders with changed inputs (user
, traits
) or when the window regains focus and revaldiation is triggered. You probably want to use settled
instead, as settled
stays truthy once the flags were loaded, while fetching
can flip multiple times.
revalidate
(function): A function you can call to revalidate the flags based on the values currently passed into the useFlags
hook.
Supported user attributes
Provide any of these attributes to store them in HappyKit. You will be able to use them for targeting specific users based on rules later on (not yet available in HappyKit Flags).
key
(string) required: Unique key for this user
email
(string): Email-Address
name
(string): Full name or nickname
avatar
(string): URL to users profile picture
country
(string): Two-letter uppercase country-code of user's county, see ISO 3166-1
persist
(boolean): This is a special attribute which tells HappyKit to persist that user in HappyKit. When you persist a user, you can see that users profile on happykit.dev. Note that persisting users will incur additional charges in the future.
getFlags
getFlags(options)
options.context
(object) required: The context which you receive from getStaticProps
or getServerSideProps
.
options.user
(object) optional: Same as user
in useFlags()
. If pass a user here, make sure to pass the same user to useFlags({ user })
.
options.traits
(object) optional: Same as traits
in useFlags()
. If pass traits here, make sure to pass the same traits to useFlags({ traits })
.
This function returns a promise resolving to an object that looks like this:
{
flags: { },
data: { },
error: { },
initialFlagState: { }
}
Advanced Usage
With user targeting
You can provide a user
as the first argument. Use this to enable per-user targeting of your flags. A user
must at least have a key
property.
import { useFlags } from "@happykit/flags/client";
export default function FooPage(props) {
const flagBag = useFlags({ user: { key: 'user-id' } });
return flagBag.flags.xzibit ? 'Yo dawg' : 'Hello';
}
See here if you're using server-side rendering
Or if you're using prerendering
import { useFlags } from "@happykit/flags/client";
import { getFlags } from "@happykit/flags/server";
export const getServerSideProps = async (context) => {
const user = { key: 'user-id' };
const { initialFlagState } = await getFlags({ context, user });
return { props: { user, initialFlagState } };
};
export default function FooPage(props) {
const flagBag = useFlags({
user: props.user,
initialState: props.initialFlagState,
});
return flagBag.flags.xzibit ? 'Yo dawg' : 'Hello';
}
See all supported user attributes
Configuring application-wide default values
You can configure application-wide default values for flags. These defaults will be used while your flags are being loaded (unless you're using server-side rendering). They'll also be used as fallback values in case the flags couldn't be loaded from HappyKit.
import { configure } from "@happykit/flags/config";
configure({
envKey: process.env.NEXT_PUBLIC_FLAGS_ENVIRONMENT_KEY,
defaultFlags: { xzibit: true },
});
With server-side rendering
Being able to set initial flag values is what enables rehydration when using server-side rendering. When you pass in initialState
the flags will be set from the beginning. This is avoids the first request on the client.
import { useFlags } from "@happykit/flags/client";
import { getFlags } from "@happykit/flags/server";
export const getServerSideProps = async (context) => {
const { initialFlagState } = await getFlags({ context });
return { props: { initialFlagState } };
};
export default function FooPage(props) {
const { flags } = useFlags({ initialState: props.initialFlagState });
return flags.xzibit ? 'Yo dawg' : 'Hello';
}
With static site generation
import { useFlags } from "@happykit/flags/client";
import { getFlags } from "@happykit/flags/server";
export const getStaticProps = (context) => {
const initialFlagState = await getFlags({ context });
return { props: { initialFlagState } };
};
export default function FooPage(props) {
const { flags } = useFlags({ initialState: props.initialFlagState });
return flags.xzibit ? 'Yo dawg' : 'Hello';
}
With static site generation only
You don't even need to use useFlags
in case you're regenerating your site on flag changes anyways.
HappyKit will soon be able to trigger redeployment of your site when you change your flags by calling a Deploy Hook you specify.
import { getFlags } from "@happykit/flags/server";
export const getStaticProps = () => {
const initialFlags = await getFlags();
return { props: { initialFlags } };
};
export default function FooPage(props) {
return props.flags.xzibit ? 'Yo dawg' : 'Hello';
}
The upside of this approach is that useFlags
isn't even shipped to the client. This keeps the page extremly small, as no client-side JS is added.
For use with getStaticProps
the downside is that the new flags are only available once your site is redeployed. You will be able to automate redeployments on flag changes with Deploy Hooks on happykit.dev soon.
Note that when you use getFlags()
with getStaticProps
the static generation phase has no concept of a visitor, so rollouts based on visitor information are not possible. You can still use getStaticProps
, but you should also use useFlags()
in such cases.
For use with getServerSideProps
the downside is that flag changes are only shown when the page is reloaded.
With disabled revalidation
HappyKit uses the browser's visibilitychange
event to revalidate feature flags when the active window regains visibility. If you explicitly set revalidateOnFocus
to false
, then HappyKit will no longer revalidate. This can be useful if you want to reduce the number of requests to HappyKit.
import { useFlags } from "@happykit/flags/client";
import { getFlags } from "@happykit/flags/server";
export const getStaticProps = (context) => {
const { initialFlagState } = await getFlags({ context });
return { props: { initialFlagState } };
};
export default function FooPage(props) {
const flagBag = useFlags({
revalidateOnFocus: false,
initialState: props.initialFlagState
});
return flagBag.flags.xzibit ? 'Yo dawg' : 'Hello';
}
Examples
Full example
This demo shows the full configuration with server-side rendering and code splitting.
import App from 'next/app';
import { configure } from "@happykit/flags/config";
configure({ envKey: process.env.NEXT_PUBLIC_FLAGS_ENVIRONMENT_KEY });
export default function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />;
}
import * as React from 'react';
import { useFlags } from "@happykit/flags/client";
import { getFlags } from "@happykit/flags/server";
import dynamic from 'next/dynamic';
const ProfileVariantA = dynamic(() => import('../components/profile-a'));
const ProfileVariantB = dynamic(() => import('../components/profile-b'));
export const getServerSideProps = async (context) => {
const user = await getUser(context.req);
const { initialFlagState } = await getFlags({ context, user });
return { props: { user, initialFlagState } };
};
export default function Page(props) {
const flagBag = useFlags({
user: props.user,
initialState: props.initialFlagState,
});
if (!flagBag.settled) return null
return flagBag.flags.profileVariant === 'A' ? (
<ProfileVariantA user={props.user} />
) : (
<ProfileVariantB user={props.user} />
);
}
TypeScript example
Default Types
@happykit/flags
includes type definitions. By default, flags returned from useFlags
and getFlags
have the following type:
type Flags = { [key: string]: boolean | number | string | null };
You can use @happykit/flags
without further configuration and get pretty good types.
Custom Flag Type
However, all exported functions accept an optional generic type, so you can harden your flag definitions by defining a custom flag type. This allows you to define flag values explicitily.
export type AppFlags = {
booleanFlag: boolean;
numericFlag: number;
textualFlag: string;
};
import { configure } from "@happykit/flags/config";
import { AppFlags } from "../types/AppFlags";
configure<AppFlags>({
endpoint: 'http://localhost:8787/api/flags',
envKey: 'flags_pub_272357356657967622',
defaultFlags: {
booleanFlag: true,
numericFlag: 10,
textualFlag: 'profileA',
},
});
import { useFlags } from "@happykit/flags/client";
import { getFlags } from "@happykit/flags/server";
import { AppFlags } from "../types/AppFlags";
export async function getServerSideProps(context) {
const { flags, initialFlagState } = await getFlags<AppFlags>({ context });
flags.booleanFlag;
flags.numericFlag;
flags.textualFlag;
return { props: { initialFlagState } };
}
export default function SomePage(props) {
const { flags } = useFlags<AppFlags>({ initialState: props.flags });
flags.booleanFlag;
flags.numericFlag;
flags.textualFlag;
return <div>{JSON.stringify(flags, null, 2)}</div>;
}
Code splitting
If you have two variants for a page and you only want to render one depending on a feature flag, you're able to keep the client-side bundle small by using dynamic imports.
import * as React from 'react';
import { useFlags } from "@happykit/flags/client";
import { getFlags } from "@happykit/flags/server";
import dynamic from 'next/dynamic';
const ProfileVariantA = dynamic(() => import('../components/profile-a'));
const ProfileVariantB = dynamic(() => import('../components/profile-b'));
export default function Page(props) {
const flagBag = useFlags({ user: { key: 'user_id_1' } });
if (!flagBag.settled) return null;
return flagBag.flags.profileVariant === 'A' ? (
<ProfileVariantA user={props.user} />
) : (
<ProfileVariantB user={props.user} />
);
}
You can even go one step further and preload the flags on the server, so that the client receives a prerenderd page.
Notice that the loading state is gone with that as well, since the flags are available upon the first render.
import * as React from 'react';
import { useFlags, getFlags, Flags } from '@happykit/flags';
import dynamic from 'next/dynamic';
const ProfileVariantA = dynamic(() => import('../components/profile-a'));
const ProfileVariantB = dynamic(() => import('../components/profile-b'));
export const getServerSideProps = async (context) => {
const user = await getUser(context.req);
const { initialFlagState } = await getFlags({ context, user });
return { props: { user, initialFlagState } };
};
export default function Page(props) {
const flagBag = useFlags({
user: props.user,
initialState: props.initialFlagState,
});
return flagBag.flags.profileVariant === 'A' ? (
<ProfileVariantA user={props.user} />
) : (
<ProfileVariantB user={props.user} />
);
}
This technique of removing the loading state works only with getServerSideProps
. If you use getStaticProps
, the server has no concept of the current visitor, but a visitor could influence flag rollouts. The client thus needs to reevaluate the flags and will only settle (pass settled: true
) once the client-side reevaluation has completed.
FAQs
Why should I only ever render the useFlags
hook once per page?
The useFlags()
handles loading of the feature flags. Since HappyKit supports all rendering modes (server-side rendering, client-side rendering, static site generation) each individual Next.js page route is the best place to call the useFlags()
hook.
Depending on the rendering mode, you might need to pass some initialState
to the useFlags()
hook. The best place to do this is right inside the Next.js page, at the top level.
From there it's best to pass the returned flagBag
to each component that needs it. You can do so directly or by using @happykit/flags/context
.