0.3.5 • Published 8 months ago

cdp-client-ts v0.3.5

Weekly downloads
-
License
ISC
Repository
github
Last release
8 months ago

CDP Studio Client - Isomorphic - TypeScript

CDP Studio Client for Browser and Node.js

Install using npm install cdp-client-ts

Example Use:

import { Client, ClientOptions, CDPNodeType } from "cdp-client-ts";

/* Using isomorphic-ws, works in Browser and Node.js environments */
async function main() {

  /* Default options can be changed on Client Init */
  const options: ClientOptions = {
    protocol: "ws://",  // ws:// or wss://
    maxRetry: 0,        // maxRetry == 0 => Infinity
    retryTimeout: 3e4   // waiting time before retrying connection
  }
  
  /* Can initiate Client with or without options */
  const client = new Client("127.0.0.1:7694", options);
  
  
  /* Iterate Over Children */
  const component: StructureNode = await client.find("SomeComponent.SomeSubComponent")
  component.forEachChild((child) => {
    if (child.nodeType == CDPNodeType.CDP_OBJECT) {
      console.log(child.route, child.id, child.lastValue)
    }
  })
  
  
  /* Get Value Async or Subscribe with callback */
  const node: StructureNode  = await client.find("SomeComponent.SomeSubComponent.SomeNode")
  const nodeValue = await node.getValue()
  node.subscribeToValue((value) => console.log(value))
  
}

Missing Features

  • Structure Change in Studio Tree
  • Authentication on init and ReAuth events

Inspiration: CDP Client (JavaScript)

0.3.5

8 months ago

0.3.4

8 months ago

0.3.3

8 months ago

0.3.2

8 months ago

0.3.1

8 months ago

0.3.0

8 months ago

0.2.9

8 months ago

0.2.8

8 months ago

0.2.7

8 months ago

0.2.6

8 months ago

0.2.5

8 months ago

0.2.4

8 months ago

0.2.3

8 months ago

0.2.2

8 months ago

0.2.1

8 months ago

0.2.0

8 months ago

0.1.4

8 months ago

0.1.3

8 months ago

0.1.2

8 months ago

0.1.1

8 months ago

0.1.0

8 months ago

0.0.1

8 months ago