generator-premiere-mern-stack
Version:
A fully function MERN stack generator running on the latest and greatest thats easy to get started with
24 lines (16 loc) • 332 B
text/typescript
import winston from 'winston';
const logger = winston.createLogger({
level: 'silly',
format: winston.format.json(),
transports: [
new winston.transports.Console({
format: winston.format.combine(
winston.format.colorize({
all: true
}),
winston.format.simple()
)
}),
]
});
export default logger;