Socket
Socket
Sign inDemoInstall

@os-utils/i18next-express-middleware

Package Overview
Dependencies
3
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @os-utils/i18next-express-middleware

Middleware for `i18next` and `express` to detect the language. Supports TypeScript.


Version published
Weekly downloads
1
Maintainers
1
Install size
17.5 kB
Created
Weekly downloads
 

Readme

Source

@os-utils/i18next-express-middleware

Middleware for i18next and express to detect the language. Supports TypeScript.

Getting started

Installation

yarn add @os-utils/i18next-express-middleware

Also install cookie-parser if you need to detect the language from a cookie.

Usage Example

import express from 'express'
import cookieParser from 'cookie-parser'
import i18next from 'i18next'
import { i18nextMiddleware, LanguageDetector } from '@os-utils/i18next-express-middleware'

// Initialize i18next
i18next
  .use(LanguageDetector) // Pass the LanguageDetector middleware
  .init({
    fallbackLng: 'en',

    // Pass the custom options if necessary
    detection: {
      // In what order will the detectors be started
      order: ['cookie', 'header'], // default: ['header']
      
      // Keys used by the detectors
      cookie: 'custom-cookie', // default: i18next
      header: 'custom-header', // default: Accept-Language
    },
  })


const app = express()
app.use(cookieParser())
app.use(i18nextMiddleware(i18next))

FAQs

Last updated on 28 Nov 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc