Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@narando/express-i18n-middleware

Package Overview
Dependencies
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@narando/express-i18n-middleware

A middleware to setup i18next for use with mustache.

  • 0.29.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-92.31%
Maintainers
2
Weekly downloads
 
Created
Source

@narando/express-i18n-middleware

A middleware to setup i18next for use with mustache.

Getting Started

You need to have nodejs, npm, express and mustache installed.

$ npm install @narando/express-i18n-middleware

Usage

Setup i18next middleware with all Languages at ./app/locales/:

import i18n from "@narando/express-i18n-middleware";

// add middleware to express
app.use(i18n());

To add a language you have to create a new file at ./app/locales. The file name will be used as the language identifier.

Use the following JSON structure

{
  "namespace1": {
    "text1": "First text",
    "text2": "Second text"
  },
  "namespace2": {
    "text3": "Third text",
    "text4": "Fourth text"
  }
}

You can use a custom location for your locale files. Just use the following example:

import i18n from "@narando/express-i18n-middleware";

// Custom path to locales folder
const localesDir = path.join(process.cwd(), "locales");

// add middleware to express
app.use(i18n({ localesDir }));

Keywords

FAQs

Package last updated on 25 Oct 2019

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc