UNPKG

@identity.com/dsr

Version:

The Dynamic Scope Request (DSR) javascript library provides capability around securely requesting credential information between an ID Requester and an ID Holder

16 lines (13 loc) 371 B
const { createLogger, format, transports } = require('winston'); // Configure the Winston logger. For the complete documentation see https://github.com/winstonjs/winston const logger = createLogger({ level: 'info', format: format.combine( format.splat(), format.simple(), ), transports: [ new transports.Console(), ], }); module.exports = logger;