Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@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 12 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.