Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 665 Bytes

Readme.md

File metadata and controls

38 lines (21 loc) · 665 Bytes

route

Route implementation for client-side routers.

Installation

$ component install component/route

API

Route(path)

Initialize a Route with a path string or regexp.

Route#before(fn)

Add before fn used when the "page" is shown. This may be invoked any number of times.

Route#after(fn)

Assign after fn used to perform cleanup when an alternate "page" is shown. This may be invoked any number of times.

Route#call(type, [args])

Invoke callbacks of type with args array.

Route#match(path)

Match against the given path. Returns false or an array with params matched.

License

MIT