Socket
Socket
Sign inDemoInstall

hash-regex-router

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hash-regex-router

Client-side hashchange regex router for [singe-page applications](http://en.wikipedia.org/wiki/Single-page_application). Works on Chrome 5, Firefox 3.6 and IE 10+.


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

hash-regex-router

Client-side hashchange regex router for singe-page applications. Works on Chrome 5, Firefox 3.6 and IE 10+.

Routes are processed in the order they are added.

Examples/API

Basic usage:

route(/^about/, function() {
    console.log('Showing the About page');
});

With capture groups:

route(/^profile\/([0-9]+)/, function(uid) {
    console.log('Showing the profile page for user ' + uid);
});

Default route:

route(/.*/, function() {
    route.go('home');
});

Programmatically go to a route (#home):

route.go('home');

Goes to #profile/123:

route.go('profile', 123);

Refresh the current route:

route.refresh();

Disable routing:

route.disable();

Re-enable routing:

route.enable();

Prevent leaving current route:

route.leave = function() {
    return confirm('Leave the current route?');
};

AMD/CommonJS

The source router.js uses CommonJS module format. dist/router-standalone.js contains minified build in UMD format that supports both AMD and CommonJS environments and also sets global route when directly in browser.

Installing from NPM:

npm install hash-regex-router

If installed through NPM then the module can be directly used in browserify by simply require()'ing it:

var route = require('router');

Building/testing

Install build dependencies:

npm install

Run static server:

make serve-test

Run tests:

make test

License

The MIT license.

Keywords

FAQs

Package last updated on 08 Apr 2015

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