Laravel Packages

Beam: Feature Flags for the Frontend with Laravel Pennant

Published
Beam: Feature Flags for the Frontend with Laravel Pennant image

Beam is a feature flags library for the frontend, powered by Laravel Pennant. It features a lightweight footprint, with a simple, promise-based API and great TypeScript types. It also features first-class React hooks and Vue composables.

// Fetch a single flag
import { useFeatureFlag } from '@beacon-hq/beam/react';
 
export function FeatureGate() {
const { status, loading, refresh } = useFeatureFlag('new-ui');
 
if (loading) return <span>Loading…</span>;
return (
<div>
{status ? 'Feature On' : 'Feature Off'}
<button onClick={() => refresh()}>Refresh</button>
</div>
);
}
 
/*
`useFeatureFlag` returns:
{
featureFlag: string;
status: boolean;
value?: any,
loading: boolean,
refresh: fn () => void
}
*/

Beam also supports scope and extra dependencies that trigger a refetch when changed:

import { useFeatureFlag } from '@beacon-hq/beam/react';
 
function Profile({ userId }: { userId: number }) {
const scope = { userId };
const feature = useFeatureFlag('beta-ui', { deps: [userId] }, scope);
return feature.status ? <NewUI /> : <LegacyUI />;
}

You can get started with this library by reading the Beam documentation. The source code is available on GitHub at beacon-hq/beam. The frontend library works in tandem with the beacon-hq/pennant-beam Composer dependency.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article