radix3 icon indicating copy to clipboard operation
radix3 copied to clipboard

🌳 Lightweight and fast router for JavaScript based on Radix Tree

Results 16 radix3 issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) | [`8.15.8` -> `9.1.0`](https://renovatebot.com/diffs/npm/pnpm/8.15.8/9.1.0) |...

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Awaiting Schedule These updates are awaiting their schedule. Click on a checkbox to...

### Environment Node 20 Nuxt 3 Radix 1.1.1 ### Reproduction Let me know if you need any more info from the sentry issue and I will provide it. ![image](https://github.com/unjs/radix3/assets/21025134/9df94df0-9574-436b-ac7f-96e616dde2d5) ###...

### 🔗 Linked issue fixes #54 - inclusion of queryparameters on a path make it fail to match. ### ❓ Type of change - [ ] 📖 Documentation (updates to...

v2

v2 got delayed for a while. The changes live in `/v2` branch: https://github.com/unjs/radix3/tree/v2 ```[tasklist] ### Tasks - [x] Support mixed params in same path segment ([#52](https://github.com/unjs/radix3/pull/52)) - [ ] Ignore...

Radix3 matcher is fairly faster than enough even one a single core laptop CPU ([benchmarks](https://github.com/unjs/radix3/tree/main/benchmark)) and real overhead always is the application logic. However it is a never ending dicussion...

### Environment node 20 and bun ### Reproduction ```ts const router = createRouter(); router.insert("/test/**:test", { payload: "wildcard" }); console.log([ router.lookup("/test") ]); ``` output: `[ null ]` expected: `[ { payload:...

Context: https://github.com/unjs/h3/pull/461 I had been trying to implement a generic `filter` option for lookup but it adds too much overhead. If tree structure has a build-in method checker support, it...

enhancement

### Describe the feature Hi there, At present, removing a node does not prune the tree. Data is deleted, but nodes are not. I created a function that can do...

Investigating [URL Pattern API compatibility](https://developer.mozilla.org/en-US/docs/Web/API/URL_Pattern_API). There are different goals for a fast route matcher (radix3) and a general purpose URL pattern matching standard. I still think we might somehow make...

enhancement