apeman-app-peerdeprecated

apeman app for peer server.

Usage no npm install needed!

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

README

apeman-app-peer

Build Status Code Climate Code Coverage npm Version JS Standard

apeman app for peer server.

Installation

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

'use strict'

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

Then,

$ apeman app my-app-01 -p 3000

Signature

apemanAppPeer(options) -> function

apeman app for peer server.

Args
Name Type Default Description
options object Optional settings.
options.port number Port number

License

This software is released under the MIT License.

Links