1.0.1 • Published 2 years ago

@zenginehq/backend-get-service-url v1.0.1

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

zn-backend-get-service-url

Helper module for getting the absolute base URL to the backend service endpoint. Includes the workspace id context where the plugin is currently running. Does not include query params or any additional path that the service may add.

Example: https://plugins.zenginehq.com/workspaces/123/myPluginNamespace/myServiceName

Installation

npm i @zenginehq/backend-get-service-url --save

Usage

const $getServiceUrl = require('@zenginehq/backend-get-service-url');

exports.run = function(eventData) {

    const baseUrl = $getServiceUrl(eventData.request);
    
    // ...

};
1.0.1

2 years ago