JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://alexschneider.github.io/pushbullet-js/pushbullet.min.js"></script>
<pre><code id="result"></code></pre>
JavaScript
PushBullet.APIKey = "Your API Key here";
PushBullet.pushHistory(function(err, res) {
document.getElementById("result").innerHTML = JSON.stringify(res, null, 4);
});