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
2.9K
increased by196.38%
Maintainers
1
Weekly downloads
 
Created
Source

wayfarer

NPM version build status Test coverage

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

Installation

$ npm i --save wayfarer

Overview

/**
 * Initialize wayfarer.
 */

var wayfarer = require('wayfarer');
var router = wayfarer();

/**
 * Register routes.
 */

router
  .path('/', function() {console.log('/')})
  .path('/home', function() {console.log('/home')})
  .path('/404', function() {console.log('/404')})
  .path('/:user', function() {console.log('/user')});

/**
 * Match a route.
 */

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

API

.path()

Register a new path. Takes a {String} pathName that calls a {Function} callback. 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.path('/', function() {console.log('do stuff')});
router.path('/:user', function() {console.log('do user stuff')});
.match()

Match a {String} 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 © Yoshua Wuyts

Keywords

FAQs

Package last updated on 29 Jun 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