
Security News
New CNA Scorecard Tool Ranks CVE Data Quality Across the Ecosystem
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
@synonymdev/react-native-slashtags
Advanced tools
:warning: This is under active development. Please use as your own risk.
An easy-to-implement React Native wrapper for Slashtags.
yarn add @synonymdev/react-native-slashtags react-native-webview
#or
npm i -s @synonymdev/react-native-slashtags react-native-webview
# iOS installation
cd ios && pod install && cd ../
Wrap app root or top level in provider
import SlashtagsProvider from '@synonymdev/react-native-slashtags';
// Slashtags functions can be accessed by all child components
const App = () => {
return (
<SlashtagsProvider>
<Demo />
</SlashtagsProvider>
);
};
Any child component can access slashtags functions via useContext()
const Demo = () => {
const context = useContext(SlashtagsContext);
const [slashRef, setSlashRef] = useState();
useEffect(() => {
setSlashRef(context);
}, [context]);
return (
<View>
<Button
title={'Generate key pair'}
onPress={async () => {
try {
const keyPair = await slashRef.current.generateSeedKeyPair(`random-seed-here`);
alert(keyPair.publicKey);
} catch (e) {
console.error(e);
}
}}
/>
<Button
title={'Parse URL'}
onPress={async () => {
try {
const url = 'slashauth://i5ubvtggukkuxdhyv7rkxtj2a2dulonpcurt4ftq4kot5nnkhdna?q=ij2c7zf9gu';
const parsed = await slashRef.current.parseUrl(url);
alert(parsed.protocol);
} catch (e) {
console.error(e);
}
}}
/>
</View>
);
};
cd web
yarn && yarn build
cd ../
# From root dir bundle up the web app into a javascript file (lib/src/web-interface.ts)
node post-build-bundle.js
cd example
yarn && yarn add ../lib
yarn ios
# or
yarn android
FAQs
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
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.