Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vincecao/use-tools
A group of reusable custom hooks for making react developer life easier. The library will be auto published to npm and GitHub registries by GitHub Actions.
https://github.com/vincecao/use-tools
actions hooks npm-package react rollup typescript
Last synced: 5 days ago
JSON representation
A group of reusable custom hooks for making react developer life easier. The library will be auto published to npm and GitHub registries by GitHub Actions.
- Host: GitHub
- URL: https://github.com/vincecao/use-tools
- Owner: vincecao
- License: mit
- Created: 2022-06-13T08:34:55.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-25T18:47:28.000Z (over 1 year ago)
- Last Synced: 2024-10-31T18:34:34.484Z (19 days ago)
- Topics: actions, hooks, npm-package, react, rollup, typescript
- Language: TypeScript
- Homepage: https://vincecao.github.io/use-tools/
- Size: 1.44 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [use-tools](https://www.npmjs.com/package/@vincecao/use-tools)
A group of reusable custom hooks for making react developer life easier.
[![npm version](https://badge.fury.io/js/@vincecao%2Fuse-tools.svg)](https://badge.fury.io/js/@vincecao%2Fuse-tools)
[![npm checks](https://badgen.net/github/checks/vincecao/use-tools)](https://github.com/vincecao/use-tools/actions)| Hooks | Description |
| ----------- | ----------- |
| [usePromiseState][usePromiseState-link] | Retrieving data from a remote by a `promise` function and use it like `useState`. |
| [useTimeout][useTimeout-link] | Connecting `setTimeout` into React state world. |
| [useShuffle][useShuffle-link] | A hook returns a new shuffled list for each unique given array. |
| [useFetch][useFetch-link] | A convenient wrapper for `$fetch` function. React implementation of `useLazyFetch` from [Nuxt3](https://v3.nuxtjs.org/api/composables/use-lazy-fetch) API. |
| [useAppearance][useAppearance-link] | A hook as well as its provider allow you to override or reset current appearance based on system preference. |
| [useStickyRef][useStickyRef-link] | One reusable hook for returning a `sticky` boolean flag based on designated gate element window position. |## Example
Please check more examples at below links
- [**Demo Site**](https://vince-amazing.com/use-tools/)
- [Code Sample](https://github.com/vincecao/use-tools/tree/master/example)## Installation
```bash
# Install latest package
# npm
npm i @vincecao/use-tools
# yarn
yarn add @vincecao/use-tools# Install beta package
# npm
npm i @vincecao/use-tools@beta
# yarn
yarn add @vincecao/use-tools@beta
```This package is automatically published in [NPMJS](https://www.npmjs.com/package/@vincecao/use-tools) and [GITHUB](https://github.com/vincecao/use-tools/packages/1555582) npm registry.
_To install package from Github npm registry, add below file in your repo before run `npm i` or `yarn add`_.
```bash
# .npmrc
@vincecao:registry=https://npm.pkg.github.com
```You can also install directly from current repo master
```bash
# npm
npm i vincecao/use-tools
npm i github:vincecao/use-tools# yarn
yarn add vincecao/use-tools
yarn add github:vincecao/use-tools
```### Release Method
- When a Pull Request is merged to the master, Github Actions will create and publish a beta version.
- When a Release is created with a new tag version, Github Actions will create and publish a stable version.### Running live example
```bash
yarn
yarn startcd example
yarn
yarn start
```[usePromiseState-link]: https://github.com/vincecao/use-tools/tree/master/src/usePromiseState
[useTimeout-link]: https://github.com/vincecao/use-tools/tree/master/src/useTimeout
[useShuffle-link]: https://github.com/vincecao/use-tools/tree/master/src/useShuffle
[useFetch-link]: https://github.com/vincecao/use-tools/tree/master/src/useFetch
[useAppearance-link]: https://github.com/vincecao/use-tools/tree/master/src/useAppearance
[useStickyRef-link]: https://github.com/vincecao/use-tools/tree/master/src/useStickyRef