Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 469 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 469 Bytes

node-bria

CounterPath Bria Desktop API for Node.js

Documentation

View documentation at https://relative.github.io/node-bria/

Installing

npm install --save bria # alternatively, yarn add bria, pnpm add bria

Usage

import { BriaClient } from 'bria'
const client = new BriaClient()
// place an audio call to +18005882300
client.on('ready', () => {
  client.calls.placeCall({
    number: '+18005882300',
    type: 'audio',
  })
})