Socket
Socket
Sign inDemoInstall

gengojs-default-api

Package Overview
Dependencies
4
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gengojs-default-api

The default router plugin for gengojs


Version published
Maintainers
1
Created

Readme

Source

gengojs-default-api

The default API plugin for gengo.js.

Build Status

This module will be used for gengo.js.

Note: The API examples defined are respect to the default parser.

An example usage with options is:


var gengo = require('gengojs');
var api = require('gengojs-default-api');

/* In whatever framework you are using: */

// I'll use express for an example
// but it shouldn't matter

var app = require('express')();
app.use(gengo({
   // Specify the type
   // of option to modify
	api:{
		/* options */
	}
},/*api()*/));

The default API is already included in gengo.js so you should not have to require it.

Documentation

See documentation

Options

{
	"global":"__",
	"localize":"__l"
}

Internal API

None

Dependencies

  • this.header.getLocale(locale:String) from Header class
  • this.header.setLocale(locale:String) from Header class
  • this.header.detectLocale(locale:String) from Header class (optional)
  • supported:Array from Header options
  • this.backend.catalog(locale:String) from Backend class

Debug

Unix:

DEBUG=default-api

Windows:

SET DEBUG=default-api

Reserved words

There are a few reserved words in the API. These words are used for overriding purposes. See the example:

// Using 'phrase' keyword:
__({phrase:'Hello!'});
// Using 'parser' keyword which
// overrides the parser:
// See https://github.com/iwatakeshi/gengojs-default-parser
// for more details.
__('Hello!', {parser:'default'});
// Using 'locale' keyword which
// overrides the locale:
__('You have {n, plural, =0 {no photos.}=1 {one photo.}other {# photos.}}', {parser:'format'});

Contribute

Feel free to contribute or even fork the project. This plugin has been written in ES6 and can be seen under lib/index.js.

FAQs

Last updated on 01 Oct 2015

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