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

unirouter-clebert-fork

v7.0.2

Published

A minimal routing system built with uniloc and redux

Downloads

8

Readme

unirouter

Version Build Status License Downloads

A minimal and universal routing engine using redux, uniloc, and the HTML5 history api. Inspired by @james_k_nelson's Simple Routing with Redux and React and @agamennon's redux-tiny-router.

Installation

npm install --save unirouter redux

Initialization

Before you can use unirouter, you'll need to include the provided reducer in your combined redux reducer:

import {combineReducers, createStore} from 'redux'
import {reducer as unirouterReducer} from 'unirouter'
import myReducer from '../path/to/my/reducer'

const reducer = combineReducers({
  router: unirouterReducer,
  myStuff: myReducer,
})

let store = createStore(reducer)

You'll also need to call the init() function to set up your initial routing information and establish event hooks for the HTML5 history api:

import {init as unirouterInit} from 'unirouter'
import getMyStore from '../path/to/my/store'

const store = getMyStore()

const routes = {
  listContacts: 'GET /contacts',
  postContact: 'POST /contacts',
  editContact: 'GET /contacts/:id',
}

const aliases = {
  'GET /': 'listContacts',
}

unirouterInit(store, routes, aliases)

This is best done in your init script on the front end, or in your render middleware on the server.

Usage

Route State

If the user were to come in with the url /contacts/13/edit?details=true, the following state would be available using whatever key you passed to the combineReducers() call mentioned above:

{
  url: '/contacts/13/edit?details=true',
  route: {name: 'editContact', options: {id: 13, details: true},
}

Use this in your top level component to determine which components should be rendered based on the current route information.

API Reference

init: function

init(store, [routes], [aliases])

Initializes the router, fires an initial NAVIGATE event, and attaches a popstate event handler.

Arguments

  • store (Object): The Redux store object, just as is passed to <Provider> with react-redux.

  • [routes] (Object): The uniloc routes object, passed to the uniloc() function documented here.

  • [aliases] (Object): The uniloc aliases object, passed to the uniloc() function documented here.

navigate: function

navigate({url, [source], [push = false], [replace = false]})

Creates a navigate event, which updates the route information in the state. It also optionally pushes a history entry using pushState, or replaces the current one using replaceState. The event must be dispatched using your store.

Payload

The payload can have the following properties:

  • url (String): The url (including the querystring) to navigate to.

  • [source] (String): The source of the event. Currently not used by the reducer, but may be in the future.

  • [push] (Boolean): Whether the browser url should be updated with pushState, adding a new history entry for the user.

  • [replace] (Boolean): Whether the browser url should be updated silently with replaceState, which doesn't add a new history entry.

reducer: function

reducer()

Unirouter's reducer, which needs to be combined with the rest of your reducers.

Props

  • name (String): The uniloc route name, which is passed to the generate() function documented here.

  • [href] (String): The href to use for the <a> element. Defaults to the generated url.

  • [options] (Object): The uniloc route options, which are passed to the generate() function documented here.

License

The MIT License (MIT)

Copyright (c) 2015 Brainspace Corporation