A Node.js client-side implementation of the MediaButler Server
NOTE: This is a code implementation of the client and does not include any front end capabilities.
- Start your project by running
npm init
- Include this as a dependancy with
npm install mediabutler-client --save
- Include the client inside your code with
const mediabutler = require('mediabutler-client');
- Connect to the service with
const service = new mediabutler({ serverUrl: '', machineId: '', clientId: '' });