npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

pathname-match

1.2.0

@yoshuawuyts

npmHomeRepoSnykSocket
Downloads:1028
$ npm install pathname-match
DailyWeeklyMonthlyYearly

pathname-match

NPM version build status Test coverage Downloads

Strip a url to only match the pathname. Weighs only 200 bytes gzipped.

Installation

$ npm install pathname-match

Usage

const pathMatch = require('pathname-match')
const wayfarer  = require('wayfarer')

const router = wayfarer('/')

router.on('/', => console.log('home'))
router.on('/derp', => console.log('derp'))
router.on('/404', => console.log('not found'))

router.match(pathMatch('/derp/#foo?bin=baz'))
// => '/derp'

Why?

It's meant to feed the output to a router such as wayfarer, and not having to worry about hashes in the url. This used to be part of wayfarer, but has been stripped out to make the api even smaller.

See Also

  • wayfarer
  • hash-match

License

MIT