/proc/thread-self/root/var/runtime/node_modules/@aws-sdk/node_modules/mqtt/bin
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 /.
#!/usr/bin/env node'use strict' /* * Copyright (c) 2015-2015 MQTT.js contributors. * Copyright (c) 2011-2014 Adam Rudd. * * See LICENSE for more information */const path = require('path')const commist = require('commist')()const helpMe = require('help-me')({ dir: path.join(path.dirname(require.main.filename), '/../doc'), ext: '.txt'}) commist.register('publish', require('./pub'))commist.register('subscribe', require('./sub'))commist.register('version', function () { console.log('MQTT.js version:', require('./../package.json').version)})commist.register('help', helpMe.toStdout) if (commist.parse(process.argv.slice(2)) !== null) { console.log('No such command:', process.argv[2], '\n') helpMe.toStdout()}