
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
@screeb/sdk-react
Advanced tools
Screeb's browser sdk, optimized for React.
Continuous Product Discovery, Without the Time Sink.
Screeb is the only Continuous Product Discovery platform that lets you analyse users' behaviour, ask in-app questions, recruit people for interviews and analyse data in a blink with AI.
This library is published in the NPM registry and can be installed using any compatible package manager.
npm install @screeb/sdk-react --save
# For Yarn, use the command below.
yarn add @screeb/sdk-react
Basic usage:
import * as React from 'react';
import { ScreebProvider, useScreeb } from '@screeb/sdk-react';
const SCREEB_APP_ID = 'your-screeb-website-id';
const App = () => (
<ScreebProvider
autoInit
websiteId={SCREEB_APP_ID}
userId="dev@screeb.app"
userProperties={{
firstname: "John",
lastname: "Smith",
last_seen_at: new Date(),
authenticated: true,
org_size: 20,
}}
>
<HomePage />
</ScreebProvider>
);
// Anywhere in your app
const HomePage = () => {
const { eventTrack } = useScreeb();
const onButtonClicked = React.useCallback(
() => eventTrack(
"screeb-sdk-react-example started",
{ test: 123 }
);
);
return (
<button onClick={onButtonClicked}>
Track event!
</button>
);
};
For a working example, see our Screeb React SDK example app.
For a more advanced usage and a complete API documentation, see documentation generated from source files.
For further information, see our developper documentation.
For any issues, please contact our support team at support@screeb.com.
All third party contributors acknowledge that any contributions they provide will be made under the same open source license that the open source project is provided under.
Released under MIT License.
FAQs
Screeb's browser sdk, optimized for React.
The npm package @screeb/sdk-react receives a total of 2,019 weekly downloads. As such, @screeb/sdk-react popularity was classified as popular.
We found that @screeb/sdk-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.