├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── errorHandler.js ├── front-end │ ├── .gitignore │ ├── .npmignore │ ├── components │ │ └── Dropdown.js │ ├── index.html │ ├── index.js │ └── index.scss ├── index.js ├── router │ ├── api.js │ └── app.js └── utilities │ ├── fileFinder.js │ └── getLogger.js └── test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode 3 | logs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /src/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/src/errorHandler.js -------------------------------------------------------------------------------- /src/front-end/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | .cache -------------------------------------------------------------------------------- /src/front-end/.npmignore: -------------------------------------------------------------------------------- 1 | .cache -------------------------------------------------------------------------------- /src/front-end/components/Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/src/front-end/components/Dropdown.js -------------------------------------------------------------------------------- /src/front-end/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/src/front-end/index.html -------------------------------------------------------------------------------- /src/front-end/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/src/front-end/index.js -------------------------------------------------------------------------------- /src/front-end/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/src/front-end/index.scss -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/src/index.js -------------------------------------------------------------------------------- /src/router/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/src/router/api.js -------------------------------------------------------------------------------- /src/router/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/src/router/app.js -------------------------------------------------------------------------------- /src/utilities/fileFinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/src/utilities/fileFinder.js -------------------------------------------------------------------------------- /src/utilities/getLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/src/utilities/getLogger.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spearmootz/winston-dashboard/HEAD/test.js --------------------------------------------------------------------------------