JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q38182F
  • License MIT

JavaScript port of the Paulig Muki API

Package Exports

  • muki

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (muki) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

muki.js

Muki.js is a JavaScript module for sending data to the Paulig Muki. The API for the Muki is pretty locked down, libraries are provided only for Android and iOS, and source files are not available. This project aims to open up the Muki a bit more, and give way for some new and interesting projects!

Getting started

npm install --save muki
var muki = require('muki')

muki.getDeviceName('0001234', function(err, deviceId) {
  muki.convertImage('./image.png', function(err, buffer) {
    muki.sendBuffer(deviceId, buffer, function(err) {
      console.log('Finished sending data!')
    })
  })
})

For more info about the protocol, see akx/Paulig-Muki.