File Explorer

/proc/self/root/proc/1/task/1/root/node24/lib/node_modules/npm/node_modules/proggy/lib

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 /.

index.js539 B · 16 lines
exports.Client = require('./client.js')exports.Tracker = require('./tracker.js') const trackers = new Map()exports.createTracker = (name, key, total) => {  const tracker = new exports.Tracker(name, key, total)  if (trackers.has(tracker.key)) {    const msg = `proggy: duplicate progress id ${JSON.stringify(tracker.key)}`    throw new Error(msg)  }  trackers.set(tracker.key, tracker)  tracker.on('done', () => trackers.delete(tracker.key))  return tracker}exports.createClient = (options = {}) => new exports.Client(options)