Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.