
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@join-stories/react-native-widgets
Advanced tools
Join Stories SDK implementation for React-Native
npm install @join-stories/react-native-widgets
A complete documentation is available at : https://docs.join-stories.com/docs/react-native-initial-sdk-setup
...
import { Text, TouchableOpacity } from 'react-native';
import { JoinStories } from "join-stories-sdk-react-native";
const Component = () => {
const startStandAlonePlayer = () => {
JoinStories.startStandAlonePlayer({
alias: "widget-test-sdk",
requestTimeoutInterval: 15,
playerBackgroundColor: "#00000030",
playerStandaloneAnimationOrigin: "default",
playerVerticalAnchor: "center",
playerShowShareButton: false,
playerHorizontalMargins: 10,
playerCornerRadius: 30,
playerProgressBarDefaultColor: "#FFFFFF",
playerProgressBarFillColor: "#026EDA",
playerProgressBarThickness: 4,
playerProgressBarRadius: 8,
});
};
return (<TouchableOpacity onPress={startStandAlonePlayer} style={styles.button}>
<Text>StandaloneView</Text>
</TouchableOpacity>)
}
...
import { View } from 'react-native';
import { JoinStoriesView } from "join-stories-sdk-react-native";
const Thumb() => {
return (
<View style={{ flex: 1, alignItems: "center", justifyContent: "center" }}>
<JoinStoriesView
alias="widget-test-sdk" // "demo-bulles",
requestTimeoutInterval={15}
fontName="HelveticaNeue-Bold"
labelColor="#808080"
thumbViewSpacing={32}
withLabel
loaderInnerViewWidth={2}
loaderInnerViewColor={["#000000"]}
loaderColors={["#FF0000", "#0000FF"]}
loaderWidth={3}
storyViewedIndicatorColor="#808080"
storyViewedIndicatorAlpha={0.8}
// thumbViewOverlayColor // UIColor(hex8: 0x4C4C4CBB)
playerBackgroundColor="#00000030"
playerVerticalAnchor="center"
playerShowShareButton={false}
playerHorizontalMargins={10}
playerCornerRadius={30}
playerProgressBarDefaultColor="#FFFFFF"
playerProgressBarFillColor="#026EDA"
playerProgressBarThickness={4}
playerProgressBarRadius={8}
containerDimension={150}
style={styles.joinStoriesView}
/>
</View>
);
}
At the moment, you will need to use npm@9.5.0
To install the project dependencies, you will need to:
brew install cocoapods
npm install
cd example
npm install
To run the project, you will need to:
npm run ios
or
npm run android
FAQs
Join Stories SDK implementation for React-Native
The npm package @join-stories/react-native-widgets receives a total of 369 weekly downloads. As such, @join-stories/react-native-widgets popularity was classified as not popular.
We found that @join-stories/react-native-widgets 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.