i am making my own small jsmvc lib, and now i want a simple routing lib for my small framwork, i am just wiring up open source libs together to make it work according to my needs,
and now i want a simple url routing componet in my framwork, which can map urls like
"customUrl/:param1"
to
"module/controller/action/param1/value1"
to path format
and i also want to create Urls from router like "roter.createUrl(module/controller/action,{params1:value1});"
to make my rules easy to maintain,
can you please suggest me some good libs or source which have similar functionally.