Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
react-hook-use-runner
Advanced tools
An easy to use React hook, that handles your async and sync functions, being very versitaile in it's implementation.
const [
data, // The resulting data or when the promise is resolved
run, // A function that will call any function you want with arguments
running, // If its running or not as a boolean (you can use this for loading status)
error, // An error object that was caught or a rejected promise
] = useRunner()
// Sample async function that expects one argument and returns a promise.
const fetchUser = (username) => {
const url = `https://api.github.com/users/${username}`
return fetch(url).then((r) => r.json())
}
const App = () => {
const [data, run, running, error] = useRunner()
const handleClick = () => {
// we pass the function you wanna call and its arguments.
run(fetchUser, 'emersonbroga')
}
return (
<div>
{data ? <pre>{JSON.stringify(data, null, 2)}</pre> : null}
{error ? (
<pre>
{error.message} {error.stack}
</pre>
) : null}
<button onClick={handleClick}>{running ? 'Loading' : 'Run'}</button>
</div>
)
}
// Sample sync function that expects one argument and returns a string.
const userLike = (username, language) => {
return `${username} likes ${language}`
}
const App = () => {
const [data, run, running, error] = useRunner()
const handleClick = () => {
// we pass the function you wanna call and its arguments.
run(userLike, 'emersonbroga', 'javascript')
}
return (
<div>
{data ? <pre>{JSON.stringify(data, null, 2)}</pre> : null}
{error ? (
<pre>
{error.message} {error.stack}
</pre>
) : null}
<button onClick={handleClick}>{running ? 'Loading' : 'Run'}</button>
</div>
)
}
Sample on CodePen.io
FAQs
React hook for running async and non-async functions
We found that react-hook-use-runner 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.