npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

router66

v1.0.6

Published

Simple Routing for Your Scenic Web App Views

Downloads

6

Readme

Router66 - Simple Routing for Your Scenic Web App Views

Handle Client side routing in a SPA application in a toolkit / framework independent manner. The router itself does not have any dependencies and does not carry any inter-relationships to any particular web frameworks or toolkits.

Example of routing setup sequence for a SPA App:

window.onload = function () {
  // Actions to be routed
  var acts = [
    {path: "proclist",  name: "Process List",  hdlr: proclist},
    {path: "procgraph", name: "Process Graph", hdlr: procgraph},
    {path: "hostgrps",  name: "Host Groups Graph",   hdlr: hostgrps},
    // "hostgrps_listing"
    {path: "hostgrps_\\w+",  name: "Host Groups List",   hdlr: hostgrps_listing},
    // TEST Items for paramsters
    {path: "proclist/:proc",  name: "Process List EXTRA",  hdlr: proclist},
    {path: "proclist/:proc/:proc2",  name: "Process List EXTRA",  hdlr: proclist},
  ];
  var router = new Router66({defpath: "hostgrps", debug: 1});
  router.add(acts);
  $.getJSON("/resource.json", function (data) {
    app_setup(data); // Something that must be done before allowing user to navigate meaningfully
    // Only now enable routing (navigating around the app)
    router.start();
    toastr.clear(); /// ... or close spinner
  });
  // Distract user with popup during above data loading
  toastr.info('Welcome to THE App !'); // ... or start spinner
  
};

You can setup routes also in a more imperative (one-by-one) / non data-driven way:

var router = new Router66({defpath: "hostgrps", debug: 1});
router.add("search", handle_search);
router.add("request/:id", handle_details);
...
router.add("proclist", handle_proclist);
router.start();

Instantiation and API Methods

API aims to impose minimal learning burden on user.

new Router66(opts) - Constructing Router

Construction accepts router options:

var opts = {...};
var router = new Router66(opts);

Routing (responding to hashchange events) does not happen yet at this point and none of the routes (with paths and handlers) are setup yet.

Constructor options:

  • defpath - Default path for routing (Optional, no default value). This path is routed-to when routing is activated with router.start(). If value for this exists it should be to valid name of one of the route actions ("name" property).
  • noactcopy - When an array of action nodes with "extended/additional properties" is passed, set this to make sure that properties beyond path and hdlr are included.
  • debug - produce more verbose output (to console) during routing ops.
  • pre - Pre-handler for each route transition. Called just before "hdlr". This handler is meant do preparation relevant for all handlers. Parameters passed to this handler are the same as

Example of implementing and setting a small prehandler:

function preroute(ev, act) {
  console.log("Routing to "+act.name);
  // ...
}
var router = new Router66({..., pre: preroute});

router.add(path, hdlr) - Adding Routes

Two or more routes should be added by add method. add() method is overloaded to accept:

 router.add(path, hdrlr); // Path and handler
 router.add(path, hdrlr, name); // ... additional (descriptive) name
 router.add([{...}, {...}, {...}]); // Add a set of action nodes (with props "path", "hdlr", "name")

router.start() - Activate routing

router.start() activates router to start reponding to hashchange events. You should consider what activating means and when to activate routing in the light of following questions:

  • Should I hide navigation before stating routing if there is some time consuming initialization activities done for the app (loading data, initializing UI, computational activities) ?
  • Should I load some initial data into SPA runtime that app (and thus meaningful routing) depends on or just speeds up application by loading this (shared?) data later?
  • Before starting routing, should I put up a iconic symbol or notify impatient, "eager-to-navigate" user some other way ?

Action properties

These properties appear as parameters of router.add(path, hdlr) method or are used as member names in in objects of action array in call form router.add(array_of_actions).

  • path - URL path to route (e.g. "#/adm/remove")
  • hdlr - Event Handler callback for action (called at routing event)
  • name - Optional name for the action (3rd param, not directly used by router). May be useful for generating navigational HTML elements through which routing often happens (this would happen outside this routing toolkit).

You can also use action nodes that have custom properties with names that do not overlap with router built-in properties ("path","hdlr","name"). These may greatly help with parametrization of route / action handlers and allow you to create reusable route handlers. To use this feature pass an option noactcopy: 1 to router constructor.

Route Handler interface

All routing action handlers have signature:

hdlr(ev, act);

where the parameters are:

  • ev - the very native/traditional JS Client side event complemented with "params" member for route url/path extracted params
    • For JS events see: Events => Mouse Events
    • ev.params - Parameters for route URL (if route was parameterized route). params member is absent for non-parameteric routes.
  • act - the action node originally matched for route (And added during initialization of routing with add() method).

Imperative routing

Not available via API at this time as router.route(ev) gets called by hashchange events. Use browser-native construct (e.g.) location.hash = '#deals'; to trigger hashchange event.

Changes

  • 1.0.3 - Eliminate routing default path ('defpath') as mandatory and have no default value for it (used to be "/"). Many apps could be fine with the state page was left on at page creation, before routing started. When 'defpath' is not set the router start() method does not perform any route change either.

Author and License

(C) Olli Hollmen 1998-2020 License: MIT

References

  • https://stackoverflow.com/questions/5367369/named-capturing-groups-in-javascript-regex
  • Google: javascript router