Socket
Socket
Sign inDemoInstall

@geniussoft/use-hooks

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@geniussoft/use-hooks

Reusable React Hooks from useHooks.com and other online resources


Version published
Weekly downloads
23
increased by43.75%
Maintainers
1
Weekly downloads
 
Created
Source

useHooks

npm NPM npm bundle size npm type definitions

Collection of reusable hooks gathered from useHooks.com and internet.

Requirement

To use this collection, you must use react@16.8.0 or greater which includes Hooks.

Install

yarn add @geniussoft/use-hooks

useLocalStorage

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>
  );
}


A Project by Genius Soft Pvt Ltd.

Maintained by Chathu Vishwajith.

Keywords

FAQs

Package last updated on 30 Aug 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc