This lets you poll peer and node stats from IPFS very easily.
$ npm install --save ipfs-statsThe code published to npm that gets loaded on require is in fact an ES5 transpiled version with the right shims added. This means that you can require it and use with your favorite bundler without having to adjust asset management process.
const StatsPoller = require('ipfs-stats')Loading this module through a script tag will make the IpfsStats obj available in the global namespace.
<script src="https://unpkg.com/ipfs-stats/dist/index.min.js"></script>
<!-- OR -->
<script src="https://unpkg.com/ipfs-stats/dist/index.js"></script>
ipfsObject. IPFS API Object.frequencyInteger (optional). The frequency, in milliseconds, to push new stats. Defaults to1000.
poller.statsretrieves the current stats. It should contain the fieldsbw,id,peersandrepo.
poller.start([opts])tells the poller to start polling theopts.poller.stop([opts])tells the poller to stop polling theopts.
opts is an Array of strings. Default is ['bw', 'id', 'peers', 'repo']. Beware that the id poller only runs once because
the ID stats are the same throughout the lifespan of the daemon.
change