File Explorer

/var/lang/lib/node_modules/npm/node_modules/archy/examples

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

0 dirs
2 files
beep.js387 B · 25 lines
var archy = require('../');var s = archy({  label : 'beep',  nodes : [    'ity',    {      label : 'boop',      nodes : [        {          label : 'o_O',          nodes : [            {              label : 'oh',              nodes : [ 'hello', 'puny' ]            },            'human'          ]        },        'party\ntime!'      ]    }  ]});console.log(s);