├── .gitignore ├── LICENSE ├── README.md ├── loggerConsole.png ├── overnightjs.png ├── sample-project ├── LICENSE ├── package-lock.json ├── package.json ├── src │ ├── CustomRouterServer.ts │ ├── NormalRouterServer.ts │ ├── controllers │ │ ├── ArrowFunctionController.ts │ │ ├── ClassDecoratorController.ts │ │ ├── CustomRouterController.ts │ │ ├── ErrorDecoratorController.ts │ │ ├── JwtPracticeController.ts │ │ ├── LoggerPracticeController.ts │ │ ├── RegExpController.ts │ │ ├── UserController.ts │ │ ├── WrapperPracticeController.ts │ │ ├── index.ts │ │ ├── nesting │ │ │ ├── ParentController.ts │ │ │ ├── a-children │ │ │ │ ├── ChildA1Controller.ts │ │ │ │ └── ChildA2Controller.ts │ │ │ └── b-children │ │ │ │ ├── ChildB1Controller.ts │ │ │ │ └── grandchildren │ │ │ │ ├── GrandChild1Controller.ts │ │ │ │ ├── GrandChild2Controller.ts │ │ │ │ └── GrandChild3Controller.ts │ │ └── other │ │ │ ├── CustomErrorMiddleware.ts │ │ │ ├── CustomLoggerTool.ts │ │ │ ├── CustomMiddleware.ts │ │ │ └── wrapperFunctions.ts │ └── start.ts ├── tsconfig.json └── tslint.json └── src ├── core ├── .npmignore ├── LICENSE ├── README.md ├── lib │ ├── Server.spec.ts │ ├── Server.ts │ ├── decorators │ │ ├── class.spec.ts │ │ ├── class.ts │ │ ├── index.ts │ │ ├── method.spec.ts │ │ ├── method.ts │ │ ├── middleware.spec.ts │ │ ├── middleware.ts │ │ ├── types.ts │ │ ├── wrapper.spec.ts │ │ └── wrapper.ts │ └── index.ts ├── package-lock.json ├── package.json ├── test │ └── lib │ │ ├── TestingServer.ts │ │ ├── controllers │ │ ├── AllHttpVerbsController.ts │ │ ├── AllVerbController.ts │ │ ├── ClassErrorMiddlewareControllers.ts │ │ ├── ClassMiddlewareControllers.ts │ │ ├── ClassOptionsControllers.ts │ │ ├── ClassWrapperControllers.ts │ │ ├── GlobalMiddlewareController.ts │ │ ├── HeadController.ts │ │ ├── MethodErrorMiddlewareControllers.ts │ │ ├── MethodMiddlewareController.ts │ │ ├── MethodWrapperController.ts │ │ ├── MultipleVerbDecoratorsController.ts │ │ ├── ParentsAndChildControllers.ts │ │ ├── ParentsAndChildren.ts │ │ ├── RegExpController.ts │ │ ├── SimpleController.ts │ │ ├── UnexpectedBehaviorControllers.ts │ │ └── index.ts │ │ └── helpers.ts ├── tsconfig.json └── tslint.json ├── jwt ├── .npmignore ├── LICENSE ├── README.md ├── lib │ ├── JwtManager.ts │ └── index.ts ├── package-lock.json ├── package.json ├── tsconfig.json └── tslint.json └── logger ├── .npmignore ├── LICENSE ├── README.md ├── lib ├── Logger.ts ├── constants.ts └── index.ts ├── package-lock.json ├── package.json ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/README.md -------------------------------------------------------------------------------- /loggerConsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/loggerConsole.png -------------------------------------------------------------------------------- /overnightjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/overnightjs.png -------------------------------------------------------------------------------- /sample-project/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/LICENSE -------------------------------------------------------------------------------- /sample-project/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/package-lock.json -------------------------------------------------------------------------------- /sample-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/package.json -------------------------------------------------------------------------------- /sample-project/src/CustomRouterServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/CustomRouterServer.ts -------------------------------------------------------------------------------- /sample-project/src/NormalRouterServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/NormalRouterServer.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/ArrowFunctionController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/ArrowFunctionController.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/ClassDecoratorController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/ClassDecoratorController.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/CustomRouterController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/CustomRouterController.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/ErrorDecoratorController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/ErrorDecoratorController.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/JwtPracticeController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/JwtPracticeController.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/LoggerPracticeController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/LoggerPracticeController.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/RegExpController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/RegExpController.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/UserController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/UserController.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/WrapperPracticeController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/WrapperPracticeController.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/index.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/nesting/ParentController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/nesting/ParentController.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/nesting/a-children/ChildA1Controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/nesting/a-children/ChildA1Controller.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/nesting/a-children/ChildA2Controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/nesting/a-children/ChildA2Controller.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/nesting/b-children/ChildB1Controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/nesting/b-children/ChildB1Controller.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/nesting/b-children/grandchildren/GrandChild1Controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/nesting/b-children/grandchildren/GrandChild1Controller.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/nesting/b-children/grandchildren/GrandChild2Controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/nesting/b-children/grandchildren/GrandChild2Controller.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/nesting/b-children/grandchildren/GrandChild3Controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/nesting/b-children/grandchildren/GrandChild3Controller.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/other/CustomErrorMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/other/CustomErrorMiddleware.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/other/CustomLoggerTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/other/CustomLoggerTool.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/other/CustomMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/other/CustomMiddleware.ts -------------------------------------------------------------------------------- /sample-project/src/controllers/other/wrapperFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/controllers/other/wrapperFunctions.ts -------------------------------------------------------------------------------- /sample-project/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/src/start.ts -------------------------------------------------------------------------------- /sample-project/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/tsconfig.json -------------------------------------------------------------------------------- /sample-project/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/sample-project/tslint.json -------------------------------------------------------------------------------- /src/core/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/.npmignore -------------------------------------------------------------------------------- /src/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/LICENSE -------------------------------------------------------------------------------- /src/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/README.md -------------------------------------------------------------------------------- /src/core/lib/Server.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/Server.spec.ts -------------------------------------------------------------------------------- /src/core/lib/Server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/Server.ts -------------------------------------------------------------------------------- /src/core/lib/decorators/class.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/decorators/class.spec.ts -------------------------------------------------------------------------------- /src/core/lib/decorators/class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/decorators/class.ts -------------------------------------------------------------------------------- /src/core/lib/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/decorators/index.ts -------------------------------------------------------------------------------- /src/core/lib/decorators/method.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/decorators/method.spec.ts -------------------------------------------------------------------------------- /src/core/lib/decorators/method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/decorators/method.ts -------------------------------------------------------------------------------- /src/core/lib/decorators/middleware.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/decorators/middleware.spec.ts -------------------------------------------------------------------------------- /src/core/lib/decorators/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/decorators/middleware.ts -------------------------------------------------------------------------------- /src/core/lib/decorators/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/decorators/types.ts -------------------------------------------------------------------------------- /src/core/lib/decorators/wrapper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/decorators/wrapper.spec.ts -------------------------------------------------------------------------------- /src/core/lib/decorators/wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/decorators/wrapper.ts -------------------------------------------------------------------------------- /src/core/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/lib/index.ts -------------------------------------------------------------------------------- /src/core/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/package-lock.json -------------------------------------------------------------------------------- /src/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/package.json -------------------------------------------------------------------------------- /src/core/test/lib/TestingServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/TestingServer.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/AllHttpVerbsController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/AllHttpVerbsController.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/AllVerbController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/AllVerbController.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/ClassErrorMiddlewareControllers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/ClassErrorMiddlewareControllers.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/ClassMiddlewareControllers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/ClassMiddlewareControllers.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/ClassOptionsControllers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/ClassOptionsControllers.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/ClassWrapperControllers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/ClassWrapperControllers.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/GlobalMiddlewareController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/GlobalMiddlewareController.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/HeadController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/HeadController.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/MethodErrorMiddlewareControllers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/MethodErrorMiddlewareControllers.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/MethodMiddlewareController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/MethodMiddlewareController.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/MethodWrapperController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/MethodWrapperController.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/MultipleVerbDecoratorsController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/MultipleVerbDecoratorsController.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/ParentsAndChildControllers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/ParentsAndChildControllers.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/ParentsAndChildren.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/ParentsAndChildren.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/RegExpController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/RegExpController.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/SimpleController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/SimpleController.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/UnexpectedBehaviorControllers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/UnexpectedBehaviorControllers.ts -------------------------------------------------------------------------------- /src/core/test/lib/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/controllers/index.ts -------------------------------------------------------------------------------- /src/core/test/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/test/lib/helpers.ts -------------------------------------------------------------------------------- /src/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/tsconfig.json -------------------------------------------------------------------------------- /src/core/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/core/tslint.json -------------------------------------------------------------------------------- /src/jwt/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/jwt/.npmignore -------------------------------------------------------------------------------- /src/jwt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/jwt/LICENSE -------------------------------------------------------------------------------- /src/jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/jwt/README.md -------------------------------------------------------------------------------- /src/jwt/lib/JwtManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/jwt/lib/JwtManager.ts -------------------------------------------------------------------------------- /src/jwt/lib/index.ts: -------------------------------------------------------------------------------- 1 | export * from './JwtManager'; 2 | -------------------------------------------------------------------------------- /src/jwt/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/jwt/package-lock.json -------------------------------------------------------------------------------- /src/jwt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/jwt/package.json -------------------------------------------------------------------------------- /src/jwt/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/jwt/tsconfig.json -------------------------------------------------------------------------------- /src/jwt/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/jwt/tslint.json -------------------------------------------------------------------------------- /src/logger/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/logger/.npmignore -------------------------------------------------------------------------------- /src/logger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/logger/LICENSE -------------------------------------------------------------------------------- /src/logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/logger/README.md -------------------------------------------------------------------------------- /src/logger/lib/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/logger/lib/Logger.ts -------------------------------------------------------------------------------- /src/logger/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/logger/lib/constants.ts -------------------------------------------------------------------------------- /src/logger/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/logger/lib/index.ts -------------------------------------------------------------------------------- /src/logger/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/logger/package-lock.json -------------------------------------------------------------------------------- /src/logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/logger/package.json -------------------------------------------------------------------------------- /src/logger/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/logger/tsconfig.json -------------------------------------------------------------------------------- /src/logger/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpmaxwell/overnight/HEAD/src/logger/tslint.json --------------------------------------------------------------------------------