Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
deep-routes
Advanced tools
Dynamic url to route mapping.
deep-routes library comes with :
Maps (deeply structured or flat) could contains OCM entries that will be resolved when traversing.
npm install deep-routes
or
bower install deep-routes
It has been developped to clarify route parsing description, and to allow relative route matching in structured maps (see below).
Example : /campaign/?s:id/update/?q:query/?(i:start/i:end)
could matchs :
Usage
var deep = require("deepjs");
require("deep-routes/lib/route");
var route = new deep.Route("/campaign/?s:id/update/?q:query/?(i:start/i:end)");
var r = route.match("/campaign/12/update/?foo");
console.log(r);
/* result :
{
catched: ["campaign", "12", "update", "?foo"],
output: {
id: "12",
query:"?foo"
},
parts: ["campaign", "12", "update", "?foo"],
index: 4,
start: 0
}
*/
?
: parts is optional!
: anything but followingAdditionnaly, if whole route start with '?' or '!', it is seen as a optional or negated block.
i:
integerf:
floatq:
queryString. anything starting with '?'r:
rql query. anything starting with '?'s:
string. anything.p:
path. used at end of route. says : take the rest of tested route. e.g. /campaign/p:path
will match /campaign/my/long/path
adding date :
deep.Route.addType("d:", function(input) { // date
var r = parseInt(input, 10);
if (!isNaN(r) && r !== Infinity)
return new Date(r);
return null;
});
A "flat" map is just an object containing, at first level, "routes" as properties keys and "controllers" as properties values (absolutly free shaped object).
example :
var deep = require("deepjs");
require("deep-routes/lib/flat");
var map = {
"/product/?s:id":{
// product controller
title:"product controller"
},
"/register/?s:email":{
title:"register controller"
},
//...
};
deep.route.flatMapper(map) // flatten and compile map. returns a mapper object which contains a single method : match(uri)
.done(function(mapper){
var r = mapper.match("/product/12"); // return first match
console.log(r);
/* result :
{
params:{ id:12 },
catched:["product", "12"],
entry:{ title:"product controller" }
}
*/
})
.elog(); // print any error
When using deep.route.flatMapper for restful services mapping, you could ask to expand simple routes (routes without variable catch) with default restful routing pattern (catching optional id, queries or subpath).
It means :
var deep = require("deepjs");
require("deep-routes/lib/flat");
var map = {
"/campaign":{ // declare simple path without variable catch => will be expanded
// campaign controller
title:"campaign controller"
},
"/register/?s:email":{ // contains variable catch => will not be expanded
title:"register controller"
},
//...
};
deep.route.flatMapper(map, true) // pass true as second argument to expand "simple" route
.done(function(mapper){
var r = mapper.match("/campaign/12"); // return first match
console.log(r);
/* result :
{
params:{ id:12 },
catched:["campaign", "12"],
entry:{ title:"campaign controller" }
}
*/
})
.elog(); // print any error
/campaign/
has been expanded in /campaign/?[(s:id/?p:path),q:query]
A structured map is defined by a structure of objects containing "route" and/or "subs" properties, the two only keywords of structured map.
The "route" entry gives the route matcher of your controller, and "subs" property contains optional subcontrollers.
The routing algorithm is like an automate that try to match any "route" property founded in current level's entries. If "route" matchs (or if there is no route property, which means always match), it selects current entry, and if current entry contains a "subs" property then algorithm appying route matching recursively on it.
So the algorithm finally selects a tree of controllers that match a uri.
Additionnaly, any "route" entry could be absolute (starting with "/"), or relative to last matched index :
./foo
: says try to match "foo" after last matched index../foo
: says try to match "foo" after last matched index - 1../../foo
: says try to match "foo" after last matched index - 2It means :
var map = {
topbar:{
// top bar controller
// no "route" property => will always be selected
},
home:{
// home controller : selected if this.route start with /home or equal /
route:"/[home,$]"
// ...
},
product:{
// products ctrler : selected if this.route start with /products
route:"/product",
// ...
subs:{
list:{
// list ctrler : selected if this.route match, from last matched index (here after /product) :
route:"./q:query/?(i:start/i:end)"
},
detail:{
// list ctrler : selected if this.route match, from last matched index :
route:"./detail/s:id"
},
comment:{
// comment ctrler : selected if this.route match, from last matched index :
route:"./comment/s:id"
}
}
},
//...
};
Possibles routes matched by this map :
/
(selected : topbar, home)/home
(selected : topbar, home)/product/?some=query
(selected : topbar, products, list)/product/?some=query/0/9
(selected : topbar, products, list)/product/?some=query/detail/53
(selected : topbar, products, list, detail)/product/?some=query/detail/53/comment/12
(selected : topbar, products, list, detail, comment)/product/?some=query/comment/12
(selected : topbar, products, list, comment)/product/?some=query/0/9/detail/53
(selected : topbar, products, list, detail)/product/?some=query/0/9/detail/53/comment/12
(selected : topbar, products, list, detail, comment)/product/?some=query/0/9/comment/12
(selected : topbar, products, list, comment)/product/detail/53
(selected : topbar, products, detail)/product/detail/53/comment/12
(selected : topbar, products, detail, comment)/product/comment/12
(selected : topbar, products, detail)The idea, with relative route management, is to break coupling between parent and children, to obtain clean MVC pattern where neither parent nor children know anything about each other.
As a controller could define its own route management (as "list", "detail" and "comment" in example above), independently of previously "consummmed" route's parts, it allows us to reattach or reuse a controller elsewhere without anychange.
As structured maps have been developped principaly for views and subviews management, it works hand in hand with deep-views.
var deep = require("deepjs");
require("deep-views/lib/view");
require("deep-routes/lib/structured");
var map = {
topbar:deep.View({
how:"<div>topbar content</div>",
where:"dom.appendTo::#topbar"
}),
home:deep.View({
route:"/[home,$]",
how:"<div>home content</div>",
where:"dom.appendTo::#content"
}),
profile:deep.View({
route:"/profile/?s:name",
how:"<div>hello { name | 'dude' } !</div>",
where:"dom.appendTo::#content"
})
};
deep.route.structuredMapper(map) // flatten and compile map. return root node (a deep.route.MapNode).
.done(function(node){
var r = node.match("/campaign/john");
console.log(r);
})
.elog();
LGPL 3.0
FAQs
route parser utilities for deepjs
We found that deep-routes demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.