
Product
Introducing Custom Pull Request Alert Comment Headers
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
@geniussoft/use-hooks
Advanced tools
Reusable React Hooks from useHooks.com and other online resources
Collection of reusable hooks gathered from useHooks.com and internet.
To use this collection, you must use react@16.8.0
or greater which includes Hooks.
yarn add @geniussoft/use-hooks
Importing module to your project
import { useLocalStorage } from '@geniussoft/use-hooks';
Usage
const App = () => {
// Similar to useState but first arg is key to the value in local storage.
const [name, setName] = useLocalStorage('name', 'Bob');
return (
<div>
<input type="text" placeholder="Enter your name" value={name} onChange={(e) => setName(e.target.value)} />
</div>
);
};
Importing module to your project
import { useKeyPress } from '@geniussoft/use-hooks';
Usage
const App=()=> {
// Call our hook for each key that we'd like to monitor
const happyPress = useKeyPress('h');
const sadPress = useKeyPress('s');
const robotPress = useKeyPress('r');
const foxPress = useKeyPress('f');
return (
<div>
<div>h, s, r, f</div>
<div>
{happyPress && '😊'}
{sadPress && '😢'}
{robotPress && '🤖'}
{foxPress && '🦊'}
</div>
</div>
}
Source from Dan Dan Abramov's blog post
Importing module to your project
import { useInterval } from '@geniussoft/use-hooks';
useInterval(() => {
setTime(dateTime);
}, 1000);
A Project by Genius Soft Pvt Ltd.
Maintained by Chathu Vishwajith.
FAQs
Reusable React Hooks from useHooks.com and other online resources
We found that @geniussoft/use-hooks 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.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.