Skip to content
This repository has been archived by the owner on Nov 11, 2023. It is now read-only.

Latest commit

 

History

History
18 lines (14 loc) · 289 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 289 Bytes

Banner

npm i vlc.js

Example Usage

import Client from 'vlc.js';

const client = new Client(
  'http://127.0.0.1:8080',
  'rosebud',
);
const status = await client.getStatus();
console.log(`${status.meta.title} is playing.`);