Last active
July 22, 2017 16:05
-
-
Save pahund/14c8b165393ea9a9a159df7af6859b9b to your computer and use it in GitHub Desktop.
The dependency tree of my module under test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BunyanLogstashTcpStream.js | |
│ | |
│ // https://nodejs.org/dist/latest-v6.x/docs/api/events.html#events_class_eventemitter | |
├── import { EventEmitter } from 'events'; | |
│ | |
│ // https://nodejs.org/dist/latest-v6.x/docs/api/net.html#net_net | |
├── import net from 'net'; | |
│ | |
│ // https://www.npmjs.com/package/bunyan | |
├── import bunyan from 'bunyan'; | |
│ | |
│ // https://www.npmjs.com/package/CBuffer | |
├── import CBuffer from 'CBuffer'; | |
│ | |
├─┬ import getIP from '../utils/getIP'; | |
│ │ | |
│ └─┬ getIP.js | |
│ │ | |
│ │ // https://nodejs.org/dist/latest-v6.x/docs/api/os.html#os_os | |
│ └── import os from 'os'; | |
│ | |
└─┬ import getLogLevelName from './utils/getLogLevelName'; | |
│ | |
└─┬ getLogLevelName.js | |
│ | |
│ // https://www.npmjs.com/package/bunyan | |
└── import { TRACE, DEBUG, INFO, WARN, ERROR, FATAL } from 'bunyan'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment