npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

use-push-router

v0.0.7

Published

A custom hook that simplifies modifying the search params in Next.js

Readme

use-push-router

A custom hook that simplifies modifying the search params in Next.js App Router and navigates to the new URL.

Installation

npm i use-push-router

Demo

Check out the demo here.

Usage

import { usePushRoute } from 'use-push-router';

const { pushSearchParams } = usePushRoute();

The pushSearchParams function takes an object with the following shape:

{
  add?: Record<string, string | string[]>;
  remove?: Record<string, string | string[] | undefined>;
  set?: Record<string, string | string[]>;
}

Adding search params

Adding search params is adding a new parameter to the URL. If the parameter already exists, it will be added as an array of values.

import { usePushRoute } from 'use-push-router';

const Component = () => {
  const { pushSearchParams } = usePushRoute();

  const handleClick = () => {
    pushSearchParams({
      add: {
        foo: 'bar', // adds foo=bar to the search params. If there is already a value for foo, it will be an array of values.
        baz: ['qux', 'quux'], // adds baz=qux&baz=quux to the search params.
      },
    });
  };

  return <button onClick={handleClick}>Add search params</button>;
};

There are two ways to add parameters to the URL:

| Method | Example | Result | | ------------------------------------------ | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------ | | Add a specific parameter value | foo: 'bar' | Adds foo=bar to the URL. If there is already a value for foo, it will become an array of values (e.g., foo=bar&foo=qux). | | Add multiple values for the same parameter | baz: ['qux', 'quux'] | Adds baz=qux&baz=quux to the URL. |

Here are some examples of how the add action modifies the URL:

| Previous URL | Add Action | Resulting URL | | ------------------------- | ---------------------------------------- | ---------------------------------------------------- | | /search | { foo: 'bar' } | /search?foo=bar | | /search?foo=bar | { foo: 'baz' } | /search?foo=bar&foo=baz | | /search?foo=bar | { foo: ['baz', 'qux'] } | /search?foo=bar&foo=baz&foo=qux | | /search?foo=bar&baz=qux | { baz: 'quux' } | /search?foo=bar&baz=qux&baz=quux | | /search?foo=bar | { foo: ['baz'], baz: 'qux' } | /search?foo=bar&foo=baz&baz=qux | | /search?foo=bar&foo=baz | { foo: 'qux' } | /search?foo=bar&foo=baz&foo=qux | | /search?foo=bar&baz=qux | { foo: 'baz', baz: ['quux', 'corge'] } | /search?foo=bar&foo=baz&baz=qux&baz=quux&baz=corge |

Setting search params

Setting search params is overwriting the existing parameter values with the new values. If the parameter is not present in the URL, it will be added.

import { usePushRoute } from 'use-push-router';

const Component = () => {
  const { pushSearchParams } = usePushRoute();

  const handleClick = () => {
    pushSearchParams({
      set: {
        foo: 'bar', // sets foo=bar in the search params. If there is already a value for foo, it will be overwritten.
        baz: ['qux', 'quux'], // sets baz=qux&baz=quux in the search params.
      },
    });
  };

  return <button onClick={handleClick}>Set search params</button>;
};

There are two ways to set parameters in the URL:

| Method | Example | Result | | ------------------------------------------ | ---------------------- | ----------------------------------------------------------------------------------------- | | Set a specific parameter value | foo: 'bar' | Sets foo=bar in the URL. If there is already a value for foo, it will be overwritten. | | Set multiple values for the same parameter | baz: ['qux', 'quux'] | Sets baz=qux&baz=quux in the URL and replaces any existing values for baz. |

Here are some examples of how the set action modifies the URL:

| Previous URL | Set Action | Resulting URL | | ------------------------- | ---------------------------------------- | ------------------------------------ | | /search | { foo: 'bar' } | /search?foo=bar | | /search?foo=bar | { foo: 'baz' } | /search?foo=baz | | /search?foo=bar | { foo: ['baz', 'qux'] } | /search?foo=baz&foo=qux | | /search?foo=bar&baz=qux | { baz: 'quux' } | /search?foo=bar&baz=quux | | /search?foo=bar | { foo: ['baz'], baz: 'qux' } | /search?foo=baz&baz=qux | | /search?foo=bar&foo=baz | { foo: 'qux' } | /search?foo=qux | | /search?foo=bar&baz=qux | { foo: 'baz', baz: ['quux', 'corge'] } | /search?foo=baz&baz=quux&baz=corge |

Removing search params

import { usePushRoute } from 'use-push-router';

const Component = () => {
  const { pushSearchParams } = usePushRoute();

  const handleClick = () => {
    pushSearchParams({
      remove: {
        foo: 'bar', // removes foo=bar from the search params.
        baz: ['qux', 'quux'], // removes baz=qux&baz=quux from the search params.
        qux: undefined, // removes qux from the search params.
      },
    });
  };

  return <button onClick={handleClick}>Remove search params</button>;
};

You can remove parameters in three ways:

| Method | Example | Result | | --------------------------------------------- | ---------------------- | ------------------------------------------------------ | | Remove a specific parameter value | foo: 'bar' | Removes foo=bar from the URL if it exists. | | Remove multiple values for the same parameter | baz: ['qux', 'quux'] | Removes baz=qux&baz=quux from the URL if they exist. | | Remove a parameter entirely | qux: undefined | Removes qux from the URL if it exists. |

Here are some examples of how the remove action modifies the URL:

| Previous URL | Remove Action | Resulting URL | | ---------------------------------- | -------------------------------- | ------------------------- | | /search?foo=bar | { foo: 'bar' } | /search | | /search?foo=bar&foo=baz | { foo: 'bar' } | /search?foo=baz | | /search?foo=bar&foo=baz | { foo: ['bar', 'baz'] } | /search | | /search?foo=bar&baz=qux | { baz: 'qux' } | /search?foo=bar | | /search?foo=bar&baz=qux&baz=quux | { baz: ['qux', 'quux'] } | /search?foo=bar | | /search?foo=bar&baz=qux | { foo: 'bar', baz: 'qux' } | /search | | /search?foo=bar&baz=qux&qux=quux | { qux: undefined } | /search?foo=bar&baz=qux | | /search?foo=bar&baz=qux&qux=quux | { foo: 'bar', qux: undefined } | /search?baz=qux |

License

MIT

Author

Nico Prananta. Website: https://nico.fyi. Bluesky: @nico.fyi