zen-router

1.0.0 • Public • Published

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)

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    3
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    3

Package Sidebar

Install

npm i zen-router

Weekly Downloads

3

Version

1.0.0

License

ISC

Last publish

Collaborators

  • act