File Explorer

/var/lang/lib/node_modules/npm/lib/commands

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

1 dir
67 files
ll.js234 B · 14 lines
const LS = require('./ls.js') class LL extends LS {  static name = 'll'  static usage = ['[[<@scope>/]<pkg> ...]']   async exec (args) {    this.npm.config.set('long', true)    return super.exec(args)  }} module.exports = LL