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

connect-moment-i18n

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect-moment-i18n

Creates a localized moment instance for connect/express

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

connect-moment-i18n

Creates a localized moment instance for connect/express

Installation

npm install connect-moment-i18n

Usage

Initialize the middleware with:

var express = require('express'),
    connectMomentI18n = require('connect-moment-i18n'),
    app = express();

app.use(connectMomentI18n());

By default, the middleware creates a localized moment instance set to the language locale specified at req.locale and attaches it to req.moment. You may pass an options hash, described below, to the constructor in order to alter the middleware's behavior.

Options

localeKey

Specifies the key on the request object the locale can be found. Defaults to locale.

momentKey

Specifies the key on the request object at which the localized moment will be attached. Defaults to moment.

defaultLocale

Specifies the default locale to fallback to if a request does not include a value at localeKey. Defaults to en.

setDefaultLocale

When true, this will set the global default moment language (e.g.: moment.lang('en');) on instantiation. If false, moment will set the global language after the first server request which is likely unintended behavior. Defaults to true which is highly recommended.

Keywords

FAQs

Package last updated on 13 Dec 2013

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