This package has been deprecated

Author message:

## NO LONGER MAINTAINED

apeman-app-sign

7.0.2 • Public • Published

apeman-app-sign

Build Status Code Climate Code Coverage npm Version JS Standard

apeman app to handle sign.

Add sign endpoints.

Installation

$ npm install apeman-app-sign --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-sign */
 
'use strict'
 
const db = require('../../db') // Instance of apeman-db
 
module.exports = {
  $pkg: { /* ... */ },
  $apps: {
    // Define your own app.
    'my-app-01': {
      // Map url and handlers.
      '/sign': [
        require('apeman-app-sign')(
          db.mode('UserSign'),
          {
            // Options
          })
      ]
    }
  }
}
 

Then,

$ apeman app my-app-01 -p 3000

Signature

apemanAppSign(UserSign, options) -> function

apeman app to handle sign.

Args
Name Type Default Description
UserSign Object UserSignModel.
options Object Optional settings.
options.signCreateSchema Object Schema for sign create.
options.signUpdateSchema Object Schema for sign update.
options.signPassCreateSchema Object Schema for sign pass create.
options.saltLength number 24 Length of salt.
options.passwordSpec number pdkdf2:120:84 Password algorithm, iterations, length.

License

This software is released under the MIT License.

Links

Readme

Keywords

Package Sidebar

Install

npm i apeman-app-sign

Weekly Downloads

45

Version

7.0.2

License

MIT

Last publish

Collaborators

  • okunishinishi