![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@unrevealed/js
Advanced tools
Integrate Unrevealed in your front-end applications
npm install @unrevealed/js
yarn add @unrevealed/js
pnpm install @unrevealed/js
UnrevealedClient
First, create an Unrevealed client by passing your client key. To generate a client key, go to the Api Keys menu in the app and create one. Select Client as the target SDK.
You should use different API keys for different environments.
import { UnrevealedClient } from '@unrevealed/js';
const client = new UnrevealedClient(yourClientKey);
You can subscribe to updates to the enabled features. The subscribe
method returns a Symbol
that can be used to unsubscribe
.
Note that the client isn't receiving updates in real time. These callbacks are simply called when the client has finished fetching features when identifying a user.
const subscription = client.subscribe(
(features) => {
// ...
},
(err) => {
// ...
},
);
// ...
client.unsubscribe(subscription);
This will fetch the features for the identified user, and save the user and team in Unrevealed.
client.identify({
user: {
id: user.id,
traits: {
email: user.email,
name: user.name,
// ...
},
},
team: {
id: team.id,
traits: {
name: team.name,
plan: team.plan,
// ...
},
},
});
const { enabled, loading } = client.getFeature('feature-key');
const enabledFeatureKeys = client.getEnabledFeatures();
You can make the client type safe regarding feature keys and user/team traits by using the code generator.
FAQs
Unrevealed SDK for JavaScript
The npm package @unrevealed/js receives a total of 26 weekly downloads. As such, @unrevealed/js popularity was classified as not popular.
We found that @unrevealed/js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.