Skip to content

Shop Docweb

Internal project documentation for development and operations

Router and Session

How request parameters are transformed into page and session state.

Updated: 2026-06-01Area: Core System

Important

node is evaluated through category resolution first. For node=article with a valid id, the detail route is prioritized to avoid collisions with category keys.

Routing priority (simplified)

if (requestedNode === 'article' && articleId > 0) {
    navPage = 'article';
}