README
apeman-app-sign
apeman app to handle sign.
Add sign endpoints.
Installation
$ npm install apeman-app-sign --save
Usage
- Define an app within Apemanfile.js
- 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.