0.0.2 • Published 3 years ago

@robindiddams/daily-node v0.0.2

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

daily-node

npm Lint & Test Language grade: JavaScript Total alerts

Node.js client library wrapper for the daily.co platform API.

Installation

npm install daily-node
or
yarn add daily-node

Getting Started

// Create a daily.co client
const daily = new Daily("<your daily.co API Key>");

// Create a room
const room = await daily.createRoom({ privacy: "public" });

// Get info about a room
console.log(await daily.room(room.name));