Socket
Socket
Sign inDemoInstall

wayfarer

Package Overview
Dependencies
Maintainers
3
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wayfarer

A simple router built for minimalism and speed


Version published
Weekly downloads
1.9K
decreased by-39.19%
Maintainers
3
Weekly downloads
 
Created
Source

wayfarer

NPM version build status Test coverage Downloads

Modular trie based based router. Works best with Browserify.

Installation

$ npm install wayfarer

Usage

const wayfarer = require('wayfarer')

const router = wayfarer({ default: '/404' })

router.on('/', () => console.log('/'))
router.on('/404', () => console.log('/404'))
router.on('/:user', () => console.log('/user'))

router.match('/tobi')
// => '/user'

API

wayfarer(opts)

Initialize wayfarer with options. default allows setting a default path to match if none other match. Ignores query strings.

const router = wayfarer({ default: '/404' })
.on(path, cb)

Register a new path. Wayfarer uses a trie to match routes, so the order in which routes are registered does not matter.

router.on('/', () => console.log('do stuff'))
router.on('/:user', () => console.log('do user stuff'))

Partial paths are supported through the /: operator, and the callback provides a param object. With a route like /:user if you navigated to /somename, you'd get a param object like this: { user: 'somename' }.

router.on('/:user', (uri, param) => console.log('my name is ', param.user))

Nested routers are supported by passing in .match() as the callback to another router.

const main = wayfarer()
const sub  = wayfarer()

main.on('/foo', sub.match.bind(sub))
sub.on('/foo/bar'), (uri) => console.log(uri))

main.match('/foo/bar')
// '/foo/bar'
.match(path)

Match a path against the saved paths in the router. If a match is found the registered callback will be executed.

router.match('/tobi')
// => 'do user stuff'

See Also

  • hash-match - easy window.location.hash matching
  • pathname-match - strip a url to only match the pathname

License

MIT

Keywords

FAQs

Package last updated on 23 Dec 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc