1.0.0 • Published 8 years ago

zen-router v1.0.0

Weekly downloads
4
License
ISC
Repository
github
Last release
8 years ago

zen-router

The simplest router possible

Usage

es5
var router = require('zen-router')

function yourRenderFunction (currentRoute) {
  switch(currentRoute) {
    case 'home':
      ...
    case 'faq':
      ...
    default:
      ...
  }
}

router(yourRenderFunction)
es6
import router from 'zen-router'

const yourRenderFunction = (currentRoute) => {
  switch(currentRoute) {
    case 'home':
      ...
    case 'faq':
      ...
    default:
      ...
  }
}

router(yourRenderFunction)