This package has been deprecated

Author message:

"!!NO LONGER_MAINTAINED"

apeman-app-locale

3.0.0 • Public • Published

apeman-app-locale

Build Status Code Climate Code Coverage npm Version JS Standard

apeman app for locale data.

Add dynamic locale with apemanlocale for requested lang.

Installation

$ npm install apeman-app-locale --save

Usage

  1. Define an app within Apemanfile.js
  2. Call the app via apeman app command.

Apemanfile.js

/** This is an example Apemanfile to use apeman-app-locale */
 
'use strict'
 
const loc = require('../../loc') // Apemanlocale instance.
 
module.exports = {
  $pkg: { /* ... */ },
  $apps: {
    // Define your own app.
    'my-app-01': {
      // Map url and handlers.
      '/': [
        require('apeman-app-locale')(
          loc,
          {}
        ),
        (req, res, next) => {
          let title = req.locale('titles.UI_TITLE') // Get locale message for requested lang.
          console.log(title)
          /* ... */
          next()
        }
      ]
    }
  }
}
 

Then,

$ apeman app my-app-01 -p 3000

Signature

apemanAppLocale(loc, options) -> function

apeman app for locale data.

Args
Name Type Default Description
loc Object Apemanlocale instance.
options Object Optional settings.
options.name string locale Name of property for request.

License

This software is released under the MIT License.

Links

Readme

Keywords

Package Sidebar

Install

npm i apeman-app-locale

Weekly Downloads

0

Version

3.0.0

License

MIT

Last publish

Collaborators

  • okunishinishi