File Explorer

/proc/self/root/proc/1/task/1/root/node24/lib/node_modules/npm/node_modules/nopt/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 /.

nopt.js644 B · 30 lines
#!/usr/bin/env nodeconst nopt = require('../lib/nopt')const path = require('path')console.log('parsed', nopt({  num: Number,  bool: Boolean,  help: Boolean,  list: Array,  'num-list': [Number, Array],  'str-list': [String, Array],  'bool-list': [Boolean, Array],  str: String,  clear: Boolean,  config: Boolean,  length: Number,  file: path,}, {  s: ['--str', 'astring'],  b: ['--bool'],  nb: ['--no-bool'],  tft: ['--bool-list', '--no-bool-list', '--bool-list', 'true'],  '?': ['--help'],  h: ['--help'],  H: ['--help'],  n: ['--num', '125'],  c: ['--config'],  l: ['--length'],  f: ['--file'],}, process.argv, 2))