
Security News
Potemkin Understanding in LLMs: New Study Reveals Flaws in AI Benchmarks
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
routing-pattern
Advanced tools
A powerful, but minimal library to conveniently parse and stringify route patterns
A powerful, but minimal library (1.2K minified and gzipped) to conveniently parse and stringify route patterns
yarn add routing-pattern
To parse routes:
import { parseRoute } from 'routing-pattern'
parseRoute('/products/3', '/products/:id')
// => { id: '3' }
parseRoute('/products/x', '/products/:id', { constraints: { id: '[0-9]+' } })
// => null
parseRoute('/en/sales/search/books/year/2019', /:locale/sales(/search/:q)(/year/:year))
// => { locale: 'en', q: 'books', year: '2019' }
parseRoute('/products/3?foo=bar', '/products/:id')
// => { id: 3, foo: 'bar' }
To stringify routes:
import { stringifyRoute } from 'routing-pattern'
stringifyRoute('/:locale/sales(/search/:q)(/year/:year)', { locale: 'en', q: 'some query', year: '2019' })
// => '/en/sales/search/some%20query/year/2019'
stringifyRoute('/:locale/sales(/search/:q)(/year/:year)', { locale: 'en', q: 'some query' })
// => '/en/sales/search/some%20query'
stringifyRoute('/products/:id', {})
// => null
This project is using the Semantic Versioning specification.
FAQs
A powerful, but minimal library to conveniently parse and stringify route patterns
The npm package routing-pattern receives a total of 298 weekly downloads. As such, routing-pattern popularity was classified as not popular.
We found that routing-pattern demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.