Simple and powerful routing for node with expressive matching.
Getting started
npm install froute --save
var froute = require("froute");
Examples
Binding a froute template
var template = "/apple/{type}" bindResult = froute; ;;
Unbinding a froute template
var unbound = froute; ;
Full example, bind and dispatch
var template = "/apple/{type}/size/{size}" resultParams; var bindResult = froute; var dispatchResult = froute; ;;;;