Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
react-native-webln
Advanced tools
Library for handling all the boilerplate needed for supporting WebLN in a react-native-webview, so you can focus on actually implementing all the features of WebLN in your app or wallet.
Just plug and play.
To use this library you also need to install react-native-webview
. If you want Typescript typings, you need to install webln
.
# Install react-native-webln and its peer dependencies
npm install --save react-native-webln react-native-webview
# If you want Typescript definitions
npm install --save-dev webln
or if you prefer Yarn.
# Install react-native-webln and its peer dependencies
yarn add react-native-webln react-native-webview
# If you want Typescript definitions
yarn add --dev webln
import { injectJs, postMessageHandler } from "react-native-webln";
const WebLNBrowser = () => {
const webview = useRef<WebView>();
const [jsInjected, setJsInjected] = useState(false);
return (
<WebView
ref={webview}
source={{ uri: "https://webln-capable-site.com" }}
onLoadStart={() => setJsInjected(false)}
onLoadProgress={(e) => {
if (!jsInjected && e.nativeEvent.progress > 0.75) {
webview.current.injectJavaScript(injectJs());
setJsInjected(true);
}
}}
onMessage={onMessageHandler(webview, {
enable: async () => { /* Your implementation goes here */ },
getInfo: async () => { /* Your implementation goes here */ },
makeInvoice: async (args) => { /* Your implementation goes here */ },
sendPayment: async (paymentRequestStr) => { /* Your implementation goes here */ },
signMessage: async (message) => { /* Your implementation goes here */ },
verifyMessage: async (signature, message) => { /* Your implementation goes here */ },
// Non-WebLN
// Called when an a-tag containing a `lightning:` uri is found on a page
foundInvoice: async (paymentRequestStr) => { /* Your implementation goes here */ }
})}
style={{ width: "100%", height: "100%", flex: 1 }}
/>
)
}
MIT
FAQs
Library for supporting WebLN in a WebView
The npm package react-native-webln receives a total of 1 weekly downloads. As such, react-native-webln popularity was classified as not popular.
We found that react-native-webln 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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.