1.0.1 ā€¢ Published 4 years ago

use-unique-id v1.0.1

Weekly downloads
112
License
MIT
Repository
github
Last release
4 years ago

useUniqueId

useUniqueId is a react hook that generates unique ids with a human readable prefix. You can assign unique ids using a react component's name as the prefix allowing you to see the component's name in a browser's developer tools without opening react dev tools.

Install

npm install use-unique-id

OR

yarn add use-unique-id

Usage

useUniqueId('DropDownInput')

Before

using a random unique id generator

input field with uuid/v4 label

After

using use-unique-id

input field with use-unique-id label

use-unique-id uses uuid/v4 under the hood generating reliable universally unique identifiers (UUIDs).

šŸš€ made with create-react-hook.


License

MIT Ā© HomeX Labs