This package has been deprecated

Author message:

"!!NO LONGER_MAINTAINED"

apeman-app-jsonapi

3.0.0 • Public • Published

apeman-app-jsonapi

Build Status Code Climate Code Coverage npm Version JS Standard

apeman app for send with JSON API format.

Installation

$ npm install apeman-app-jsonapi --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-jsonapi */
 
'use strict'
 
module.exports = {
  $pkg: { /* ... */ },
  $apps: {
    // Define your own app.
    'my-app-01': {
      // Map url and handlers.
      '/': [
        require('apeman-app-jsonapi')({
          // Options
        }),
        (req, res, next) => {
          // Send response as json api.
          res.jsonapi({
            meta: {},
            data: {
              id: 1,
              types: 'users',
              attributes: {}
            }
          })
        }
      ]
    }
  }
}
 

Then,

$ apeman app my-app-01 -p 3000

Signature

apemanAppJsonapi(options) -> function

Send with JSON API format.

Args
Name Type Default Description
options object Optional settings.
options.name string jsonapi Name of jsonapi method in response.

License

This software is released under the MIT License.

Links

/apeman-app-jsonapi/

    Package Sidebar

    Install

    npm i apeman-app-jsonapi

    Weekly Downloads

    0

    Version

    3.0.0

    License

    MIT

    Last publish

    Collaborators

    • okunishinishi