3.0.0 • Published 10 years ago

apeman-app-captcha v3.0.0

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

apeman-app-captcha

Build Status Code Climate Code Coverage npm Version JS Standard

apeman app to verify captcha

Installation

$ npm install apeman-app-captcha --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-captcha */

'use strict'

// captcha configuration generated by apeman-task-captcha
const captureConfig = require('../tmp/captcha/captcha.json')

module.exports = {
  $pkg: { /* ... */},
  $apps: {
    // Define your own app.
    'my-app-01': {
      // Map url and handlers.
      '/': [
        require('apeman-app-captcha')(captureConfig, {
          // Options
        })
      ]
    }
  }
}

Then,

$ apeman app my-app-01 -p 3000

Signature

apemanAppCaptcha(captchas, options) -> function

apeman app to verify captcha

Args
NameTypeDefaultDescription
captchasobjectCapture config data.
optionsobjectOptional settings.

Endpoints

urlMETHOD

License

This software is released under the MIT License.

Links

3.0.0

10 years ago

1.1.0

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago