3.0.7 • Published 8 years ago

apeman-app-profile v3.0.7

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

apeman-app-profile

Build Status Code Climate Code Coverage npm Version JS Standard

apeman app for profile endpoints.

Installation

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

'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.
      '/': [
        require('apeman-app-profile')(
          db.model('UserProfile'),
          {
            // Options
          })
      ]
    }
  }
}

Then,

$ apeman app my-app-01 -p 3000

Signature

apemanAppProfile(UserProfile, options) -> function

apeman app for handle profile.

Args
NameTypeDefaultDescription
UserProfileobjectUserProfileModel
optionsobjectOptional settings.

License

This software is released under the MIT License.

Links

3.0.7

8 years ago

3.0.0

8 years ago

2.0.0

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago