@screeb/sdk-react
v0.8.0
Published
Screeb's browser sdk, optimized for React.
Readme
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.
Installation
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-reactUsage
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="[email protected]"
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>
);
};Custom domains (AdBlocker bypass)
If you route Screeb traffic through your own domain (reverse proxy) to bypass AdBlockers, pass the
endpoints (and optionally screebEndpoint for the loader URL) through the provider's options
prop. Only the endpoints you provide are overridden; the rest fall back to Screeb's defaults.
<ScreebProvider
autoInit
websiteId={SCREEB_APP_ID}
options={{
screebEndpoint: "https://analytics.acme.com/sdk/tag.js",
endpoints: {
rpc: "https://analytics.acme.com/rpc",
static: "https://analytics.acme.com/static",
report: "https://analytics.acme.com/report",
hostedPage: "https://analytics.acme.com/hosted-page",
centipede: "wss://analytics.acme.com/centipede",
},
}}
>
<HomePage />
</ScreebProvider>All endpoints must use https:// (or wss:// for centipede) and the domains must be allow-listed
in Screeb Admin → Settings → Custom Domains. See the
Custom Collector URL guide.
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 developer documentation.
Support
For any issues, please contact our support team at [email protected].
Contributing
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.
License
Released under MIT License.
