react-use-query-param-string
TypeScript icon, indicating that this package has built-in type declarations

2.1.5 • Public • Published

🔡 react-use-query-param-string

React hook for easily getting and setting query param strings.

npm Version  View project on GitHub  Deploy Status

Buy me a coffee Sponsor

Documentation

Read the official documentation.

Overview

This hook allows you to use a query param string the same way you'd use regular React state (i.e. via React.useState).

You can also use the getQueryParams() and setQueryParams() functions to get/set query params yourself.

Features include:

  • 👍 Read and set query params with ease
    • Use query param strings just like you would React state
  • 🔄 State syncing across components
    • Hooks stay synchronized even when used in multiple components.
  • 🙅‍♂️ No Router interference
    • Uses window functions that don't interfere with router frameworks.
  • 💁‍♀️ Convenience functions available
    • Use getQueryParams() or setQueryParams() to get/set query params yourself.

Donate

If this project helped you, please consider buying me a coffee or sponsoring me. Your support is much appreciated!

Buy me a coffee Sponsor

Table of Contents

Installation

npm i react-use-query-param-string

Quick Start

import { useQueryParamString } from 'react-use-query-param-string';
// Will use query param `q` and have a default value of empty string.
// `initialized` will be true after the value has been read from the query params.
const [searchText, setSearchText, initialized] = useQueryParamString('q', '');

See the useQueryParamString docs for more usage details, including static functions.

TypeScript

Type definitions have been included for TypeScript support.

Icon Attribution

Favicon by Twemoji.

Contributing

Open source software is awesome and so are you. 😎

Feel free to submit a pull request for bugs or additions, and make sure to update tests as appropriate. If you find a mistake in the docs, send a PR! Even the smallest changes help.

For major changes, open an issue first to discuss what you'd like to change.

⭐ Found It Helpful? Star It!

If you found this project helpful, let the community know by giving it a star: 👉⭐

License

See LICENSE.md.

Package Sidebar

Install

npm i react-use-query-param-string

Weekly Downloads

2,450

Version

2.1.5

License

MIT

Unpacked Size

15.3 kB

Total Files

7

Last publish

Collaborators

  • justinmahar