Socket
Socket
Sign inDemoInstall

wayfarer

Package Overview
Dependencies
Maintainers
1
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
1
Weekly downloads
 
Created
Source

wayfarer

NPM version build status Test coverage Downloads

A simple trie based router built for minimalism and speed. Works best with Browserify.

Installation

npm install wayfarer

Overview

var router = require('wayfarer');

// Register routes.

router({qs: false})
  .default('/404')
  .route('/', function() {console.log('/')})
  .route('/home', function() {console.log('/home')})
  .route('/404', function() {console.log('/404')})
  .route('/:user', function() {console.log('/user')})
  .match('/tobi');
  // => '/user'

API

wayfarer(opts)

Initialize wayfarer with options. Setting qs to false stops wayfarer from triggering on changes to the querystring.

var router = wayfarer({qs: false});
.route(path, cb)

Register a new path. Partial paths are supported through the /: operator. Wayfarer uses a trie to match routes, so the order in which routes are registered does not matter.

router.route('/', function() {console.log('do stuff')});
router.route('/:user', function() {console.log('do user stuff')});
.default(defaultPath)

Sets a default path to match. This is particularly useful for setting 404 pages.

router.default('/404');
router.route('/404', function() {console.log('sunglasses not found')});
.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'

License

MIT

Keywords

FAQs

Package last updated on 16 Nov 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