Skip to content

NodeJS Module for accessing destination details on SAP Cloud Platform Cloud Foundry stack

License

Notifications You must be signed in to change notification settings

diegodossantos95/consume-destination-scp-cf

Repository files navigation

consume-destination-scp-cf

npm Package Build Status Generic badge

NodeJS Module for accessing destination details on SAP Cloud Platform Cloud Foundry stack

Install

npm i consume-destination-scp-cf

Prerequisites

  • Destination service instance created
  • Destination configured
  • All of the above instances bound to the node app, e.g. via manifest.yml:
    applications:
    - name: my_app
      path: my_app
      memory: 128M
      services:
        - destination-instance

Usage

const consumeDestination = require('consume-destination-scp-cf');

// Promise chain
consumeDestination({
        url: '/api/json',
        destinationInstance: 'my-destination-instance',
        destinationName: 'myDestination',
        httpMethod: 'POST',
        payload: {
            "me": "here"
        }
    })
    .then(response => {
        // handle response
    })
    .catch(err => {
        // handle error
    })

API

consume-destination-scp-cf(options)

  • url = Optional, the url to call in the destination, absolute path (including leading slash) e.g. /api/v1/json
  • destinationInstance = Name of the instance of the destination service
  • destinationName = Name of the destination to use
  • httpMethod = HTTP method to use on Destination. Supported GET, POST, PUT, PATCH, DELETE, HEAD and OPTIONS.
  • payload = Optional, payload for POST, PUT or PATCH

License

MIT

References

About

NodeJS Module for accessing destination details on SAP Cloud Platform Cloud Foundry stack

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •