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

route-event

v7.4.0

Published

Simple client side route event

Readme

route event

tests types module semantic versioning install size GZip size dependencies license

Simple route event for the browser. This will handle URL changes client-side, so that navigating will not cause a page reload.

Call a function with a path whenever someone clicks a link that is local to the server. Also, use the history API to handle back/forward button clicks.

install

npm i -S route-event

Modules

CJS

var Route = require('route-event').default

ESM

import Route from 'route-event'

pre-bundled

This package exposes minified JS files too. Copy them to a location that is accessible to your web server, then link to them in HTML.

copy

cp ./node_modules/route-event/dist/index.min.js ./public/route-event.min.js

HTML

<script type="module" src="./route-event.min.js"></script>

Example

Listen for click events on document.body. If the event is triggered by using the browser's back/forward button, then { popstate } will be true.

import Route from 'route-event'
const onRoute = Route()  // by default listen on document.body

// listen for click events on docuement.body. If the href is local to the
// server, call `onRoute`
var stopListening = onRoute(function onRoute (path, data) {
  console.log(path)
  // => '/example/path'
  console.log(data)
  // => { scrollX: 0, scrollY: 0, popstate: false }

  // set focus
  // see https://gomakethings.com/shifting-focus-on-route-change-with-react-router/
  // and https://www.gatsbyjs.com/blog/2019-07-11-user-testing-accessible-client-routing/
  document.querySelector('h1')?.focus()

  // handle scroll state like a web browser
  // (restore scroll position on back/forward)
  if (data.popstate) {
      return window.scrollTo(data.scrollX, data.scrollY)
  }

  // if this was a link click (not back button), then scroll to top
  window.scrollTo(0, 0)
})

// programmatically change the location and call the onRoute cb
routeEvent.setRoute('/some/path')

// change the route, but don't call the callbacks
routeEvent.setRoute.push('/abc')

// ...sometime in the future...
// unsubscribe from route events
stopListening()

Don't emit a route event when the page first loads

By default this will dispatch a route event when the page first loads. Pass in { init: false } to disabled this.

import Route from 'route-event'

const onRoute = Route({ init: false })

Any subsequent clicks will trigger an event, but nothing will happen on first page load.

Pass in an element to listen to, and handle events with a router

import Route from 'route-event'
import Router from '@substrate-system/routes'

const router = Router()
const routeEvent = Route({
  el: document.getElementById('example')
})

router.addRoute('/', function () {
  console.log('root')
})

routeEvent(function onChange (path, ev) {
  var m = router.match(path)
  m.action()

  // handle scroll state like a web browser
  if (ev.popstate) {
      return window.scrollTo(ev.scrollX, ev.scrollY)
  }
  window.scrollTo(0, 0)
})

Use a function to check clicks

Pass in a function to check if we should handle the link locally, or like a normal link.

import Route from 'route-event'

const onRoute = Route({
    handleLink: (href) => href === '/abc'
})

onRoute(newPath => {
    console.log(newPath !== 'def')  // true
})

// does not call our client-side handler function
document.querySelector('#def')?.click()

focus

See a post about focus in SPAs.

in user testing, Marcy Sutton found that the generally most well received approach was to shift focus to the h1 heading on each route change.

Note in the example, we set focus to the h1 element on any route change.

onRouteChange(() => {
  const h1 = document.querySelector('h1')
  const tabIndex = h1?.getAttribute('tabindex')
  h1?.setAttribute('tabindex', tabIndex ?? '-1')
  h1?.focus()
})

This package includes some CSS to help with focus also. Import the CSS as normal.

import 'route-event/css'

See also

Without page refreshes, screen reader users may not be informed that the page has changed.

a user’s keyboard focus point may be kept in the same place as where they clicked, which isn’t intuitive.

solutions

  1. Dynamically set focus to an HTML wrapper element on page change, to both move focus to the new content and make an announcement in assistive technology.

    This pattern often uses tabindex="-1" on a DIV or other block-level element to allow focus to be placed on an otherwise non-interactive element.

  2. Dynamically set focus to a h1-h6 heading element instead of a wrapper to move focus to new content and make a shorter screen reader announcement. This also typically requires tabindex="-1"

  3. Dynamically set focus to an interactive element like a button. The name of the button matters a lot here.

  4. Leave focus where it is and make an ARIA Live Region announcement instead.

  5. Reset focus to the top of the application (i.e. a parent wrapper element) to mimic a traditional browser refresh and announce new content in assistive technology.

  6. Turn on focus outlines for keyboard and screen reader users while suppressing them for the mouse using CSS :focus-visible and polyfill or the What Input library.

  7. Any combination of the above

scroll position

The browser will restore your previous scroll position when you use the back button, but on a new page it will start scrolled to 0, 0.

API

Listener

Event listeners are functions that take an href and an object with previous scroll position and popstate -- a boolean indicating if this was a link click or back / forward button (true means it was back/forward button).

interface Listener {
  (href:string, data:{
    scrollX:number,
    scrollY:number,
    popstate:boolean
  }):void;
}

Route

Create an instance of the event listener. Optionally take an element to listen to. Return a function that takes a callback that will receive route events. The returned function also has a property setRoute that will prgrammatically change the URL and call any route listeners.

import Route from 'route-event'
function Route (opts:{ el?:HTMLElement } = {}):{
    (cb:Listener):void;
    setRoute:ReturnType<typeof singlePage>
}

setRoute

A property on the returned function so you can programmatically set the URL.

function setRoute (href:string):void
import Route from '@substrate-system/route-event'

const routeEvent = Route()
routeEvent.setRoute('/example')

setRoute.push

Change the route, but don't call the callbacks.

import Route from '@substrate-system/route-event'

const routeEvent = Route()
routeEvent.setRoute.push = function (href:string):void {