1.0.1 • Published 8 years ago

apeman-app-oauthed v1.0.1

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

apeman-app-oauthed

Build Status Code Climate Code Coverage npm Version JS Standard

apeman app to access oauthed data.

Define function in req to access oauthed data.

  • req.oauthed() -> oauthed
  • req.oauthed(oauthed)

Installation

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

'use strict'

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

Then,

$ apeman app my-app-01 -p 3000

Signature

apemanAppOauthed(options) -> function

apeman app to access oauthed data.

Args
NameTypeDefaultDescription
optionsobjectOptional settings.
options.namestringoauthedProperty name of request to set the function.

License

This software is released under the MIT License.

Links

1.0.1

8 years ago

1.0.0

8 years ago