🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

@lokibai/react-use-hooks

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lokibai/react-use-hooks

react hooks

0.1.4
latest
Source
npm
Version published
Weekly downloads
5
-28.57%
Maintainers
1
Weekly downloads
 
Created
Source

@lokibai/react-use-hooks

react hooks

NPM

Install

npm i @lokibai/react-use-hooks

Usage

import React from 'react';
import { useBoolean } from '@lokibai/react-use-hooks';

const App = () => {
  const [on, toggle] = useBoolean();

  const onToggle = () => {
    toggle();
  };

  return <button onClick={onToggle}>{String(on)}</button>;
};

Index

  • useMounted
  • useBoolean
  • useDebounce
  • useThrottle
  • useCopyClipboard
  • useInViewport

License

MIT ©

FAQs

Package last updated on 11 Jul 2020

Did you know?

Socket

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.

Install

Related posts