File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/node_modules/mqtt-packet/benchmarks

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

parse.js488 B · 21 lines
 const mqtt = require('../')const parser = mqtt.parser()const max = 10000000let iconst start = Date.now() / 1000 for (i = 0; i < max; i++) {  parser.parse(Buffer.from([    48, 10, // Header (publish)    0, 4, // Topic length    116, 101, 115, 116, // Topic (test)    116, 101, 115, 116 // Payload (test)  ]))} const time = Date.now() / 1000 - startconsole.log('Total packets', max)console.log('Total time', Math.round(time * 100) / 100)console.log('Packet/s', max / time)