apeman-app-bodydeprecated

apeman app to parse request body

Usage no npm install needed!

<script type="module">
  import apemanAppBody from 'https://cdn.skypack.dev/apeman-app-body';
</script>

README

apeman-app-body

Build Status Code Climate Code Coverage npm Version JS Standard

apeman app to parse request body

Installation

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

'use strict'

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

Then,

$ apeman app my-app-01 -p 3000

Signature

apemanAppBody(options) -> function

apeman app to parse request body

Args
Name Type Default Description
options object Optional settings.

License

This software is released under the MIT License.

Links