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

VLC HTTP endpoint wrapper for NodeJS developers

License

Notifications You must be signed in to change notification settings

dylhack/vlc.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Banner

npm i vlc.js

Example Usage

import Client from 'vlc.js';

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