Your IP : 216.73.216.91


Current Path : /var/node/inatote/Inatote-Backend/node_modules/.bin/
Upload File :
Current File : /var/node/inatote/Inatote-Backend/node_modules/.bin/npm-tree

#!/usr/bin/env node
var archy = require('./archy');
process.stdin.resume();
process.stdin.setEncoding('utf8');

var data = '';
process.stdin.on('data', function (_) { data += _; });
process.stdin.on('end', function () {
  console.log(archy(JSON.parse(data)));
});