
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
@hello3/react
Advanced tools
React package that contains functionality that is needed to easily setup authentication with Hello3. Simply wrap your app with the Hello3Provider and use the useHello3 hook to get started.
// index.tsx
import React from 'react'
import ReactDOM from 'react-dom'
import { Hello3Provider } from '@hello3/react'
import App from './App'
ReactDOM.createRoot(document.getElementById('root')).render(
<Hello3Provider>
<App />
</Hello3Provider>
)
// App.tsx
import { useHello3 } from '@hello3/react'
function App() {
const { user, showSignInModal, clearSession } = useHello3()
return (
<div>
{user ? (
<div>
<p>Welcome, {user.address}!</p>
<button onClick={clearSession}>Sign out</button>
</div>
) : (
<div>
<p>Please sign in</p>
<button onClick={showSignInModal}>Sign in with Hello3</button>
</div>
)}
</div>
)
}
// Props that can be passed to Hello3Provider
type ProviderProps = {
domain?: string
connector?: string
connectorProtocol?: string
storageKey?: string
onSignInError?: (error: Error) => void
}
// Values returned from the useHello3 hook
import { useHello3 } from '@hello3/react'
function App() {
const {
isShowingSignInModal,
showSignInModal,
hideSignInModal,
clearSession,
user: { did, address, token },
} = useHello3()
// ...
}
To install the local dependency in a test react project:
$ cd hello3-react
$ npm i && npm run build:dev
$ cd ../hello3-rest-react-app
$ npm i ../hello3-react
From there on the lib is linked, and when you change something in hello3-react, run again npm run build:dev to hot reload the package, or simply npm run build:esm for faster buildtime.
More documentation on integrating Hello3 is available on the docs website.
FAQs
React bindings for hello3 sdks
We found that @hello3/react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.