initial commit

This commit is contained in:
Brian Emilius
2020-05-17 22:00:53 +02:00
commit a60a37f441
57 changed files with 902 additions and 0 deletions

16
config/winston.js Normal file
View File

@@ -0,0 +1,16 @@
var winston = require("winston");
var expressWinston = require("express-winston");
var requestLogger = expressWinston.logger({
transports: [
new winston.transports.Console()
],
format: winston.format.simple(),
expressFormat: true,
meta: false,
colorize: true,
});
module.exports = {
requestLogger
};