8.4.0 • Published 1 year ago

@camunda8/console v8.4.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

console-client-node-js

The Camunda 8 Web Console API client for Node.js.

Installation

npm i camunda-console-client

Usage

Set the credential for the Camunda SaaS Console in the environment, then:

import {ConsoleApiClient} from 'camunda-console-client'

const console = new ConsoleApiClient()

async function main() {
    const res = await console.getClusters()
    console.log(res)
    const params = await console.getParameters()
    console.log(params)
}

main()
8.4.0

1 year ago