http-hash icon indicating copy to clipboard operation
http-hash copied to clipboard

HTTP router based on a strict path tree structure

Results 1 http-hash issues
Sort by recently updated
recently updated
newest added

Add backtrace feature for splat matching to support case like follows: ```javascript // when route set like follows hash.set('/a/b/c', routeHandlerABC); hash.set('/a/b/*', routeHandlerABStar); // /a/b/c/d could match /a/b/* var res =...