A ts/js wrapper for the vmw open Kiyoh data
npm install vmw-kiyoh-wrapper``sh`
npm i vmw-kiyoh-wrapper
Example 1:
Set the review score in an element.
`js
let VmwKiyoh = require('vmw-kiyoh-wrapper').VMWKiyoh;
Kiyoh = new VmwKiyoh();
Kiyoh
.liveData()
.parseData()
.then( () => {
Kiyoh.target = '#selector'
Kiyoh.sendData('total_score')
})
``