0.2.0 • Published 10 years ago

connect-moment-i18n v0.2.0

Weekly downloads
2
License
-
Repository
github
Last release
10 years ago

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.

0.2.0

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago