Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@financial-times/dotcom-middleware-navigation

Package Overview
Dependencies
Maintainers
11
Versions
185
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@financial-times/dotcom-middleware-navigation

This package provides an [Express] compatible middleware which integrates the [FT Navigation] package into your application and adds the navigation data, including editions data, to each response making it available to your application's route handlers. T

latest
npmnpm
Version
13.3.0
Version published
Weekly downloads
677
-46.82%
Maintainers
11
Weekly downloads
 
Created
Source

@financial-times/dotcom-middleware-navigation

This package provides an Express compatible middleware which integrates the FT Navigation package into your application and adds the navigation data, including editions data, to each response making it available to your application's route handlers. This data is required to render the navigation components header and footer.

Getting started

This package is compatible with Node 12+ and is distributed on npm.

npm install --save @financial-times/dotcom-middleware-navigation

After installing the package create a new instance of the middleware and register it with your application. The middleware can be configured with several options:

const express = require('express')
const app = express()

+ const navigation = require('@financial-times/dotcom-middleware-navigation')
+ app.use(navigation.init())

Once registered, a navigation property will be added to the response locals object containing the navigation data.

app.get('/', (request, response) => {
  console.log(response.locals.navigation) // { ... }
})

Options

The middleware accepts the following parameters. All options will be passed along to the FT Navigation package:

enableSubNavigation

Enables fetching hierarchical navigation data for the current path including any parent and child pages. Defaults to false.

getCurrentPath

Enables overriding of the default current path logic. Defaults to:

  (request) => normalizePath(request.get('ft-vanity-url') || request.path)

interval

See the FT navigation documentation for more details.

subNavigationUrl

See the FT navigation documentation for more details.

menuUrl

See the FT navigation documentation for more details.

FAQs

Package last updated on 01 Oct 2025

Did you know?

Socket

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.

Install

Related posts