pathname-match

1.2.0 • Public • Published

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

License

MIT

Package Sidebar

Install

npm i pathname-match

Weekly Downloads

213

Version

1.2.0

License

MIT

Last publish

Collaborators

  • yoshuawuyts