New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

helm

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

helm

A minimal hash router for browsers.

0.2.1
latest
Source
npm
Version published
Maintainers
1
Created
Source

Helm: Minimal router for browsers.

Inspired by page.js, Helm is a client-side router that leverages the hash portion of URLs to do the routing.

Installation

npm install helm

Usage

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

helm.on('/user/:username', function (context) {
  console.log(context.params.username);
});

helm.go('/user/jack');

FAQs

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