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

gengojs-core-modules

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gengojs-core-modules

gengo.js core modules is a set of modules that helps the core to function properly.

  • 1.3.0
  • Source
  • npm
  • Socket score

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

gengojs-core-modules

gengo.js core modules is a set of modules that helps the core to function properly.

Build Status

Classes

Inputify

This module returns the phrase and the extracted arguments as an API for the parser plugin.

@example

import { inputify } from 'gengojs-modules'
API
phrase()

@return {string} The phrase to internationalize.

@example

let input = inputify(phrase, args);
var phrase = input.phrase();
arguments()

@return {Array} The original arguments before extraction.

@example

let input = inputify(phrase, args);
var arguments = input.args();
other()

@return {object} The other arguments after extraction in the form of an API.

@example

let input = inputify(phrase, args);
let other = input.other();
var args = other.args();
var values = other.values();

Optify

This module reads or sets the initial options.

@example

import { optify } from 'gengojs-modules'
Supported Extensions

The supported extensions are:

  • .js (Javascript)
  • .json (JSON)
  • .yml, .yaml (YAML)

Plugify

This module initializes the plugins.

@example

import { plugify } from 'gengojs-modules'

Servify

This module detects the server and applies the API to the request and response objects

@example

import { servify } from 'gengojs-modules'

Develop

# Build modules with gulp for development
gulp

Test

# Build modules with gulp for production
gulp test

Keywords

FAQs

Package last updated on 31 Aug 2015

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