
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
node-logger-easy
Advanced tools
Export the log to the console or file, customize the output log format, support sending mail to the designated mailbox;
Export the log to the console or file, customize the output log format, support sending mail to the designated mailbox;
If you want to see more:
- 1. 'git clone git@github.com:dai1254473705/node-logger-easy.git';
- 2. 'npm install'
- 3. 'npm run test'
`npm install node-logger-easy --save`
or `cnpm install node-logger-easy --save`
or `yarn add node-logger-easy`
all colors :

/**
* test
* index.js
*/
const nodeLoggerEasy = require('../index');
const logger = new nodeLoggerEasy({
format: {
datePattern: 'YYYYMMDDHHmmss',
extension: 'log',// [log,txt]file extension
type: 'jsonString', // string || json(no color) || jsonString
params: ['time','serverIp','level','message','pid'], //set default log params
paramsTimeFormat: 'YYYY年MM月DD日HH时mm分ss秒',// logs time format,use moment.js ,for example[YYYYMMDDHHmmss,YYYY年MM月DD日HH时mm分ss秒]
console: true, // if you want see the logs in terminal; default:true
},
// if you want to out put log to file
file: {
save: true, // is create log files,default:false
path: './logs/',// logs dir path,auto create dir
saveLevel: ['error','warn'],//set the level you want to save,default: [] , all level: ['trance', 'debug', 'info', 'warn', 'error', 'fatal']
saveDay: 7,// save days,if '0',will not delete;default : 0
},
// set color if you like
// ['black','red','green','yellow','blue','magenta','cyan','white','gray','redBright','greenBright','yellowBright','blueBright','magentaBright','cyanBright','whiteBright']
color: {
trance: 'yellow',
debug: 'blue',
info: 'cyan',
warn: 'white',
error: 'gray',
fatal: 'redBright'
},
// you should set false or not set on production env;
debug: true // some logs
});
module.exports = logger;
logger.trance('哈哈哈哈哈哈哈',{color: 'blue'});
logger.debug('哈哈哈哈哈哈哈',{color: 'redBright'});
logger.info('哈哈哈哈哈哈哈');
logger.warn('哈哈哈哈哈哈哈');
logger.error('哈哈哈哈哈哈哈');
logger.fatal('哈哈哈哈哈哈哈');
logger.warn({haha: 213,asdf: 'sdf'},{color: 'blue',json: true});




logger[level](message,options);
messages:
---logger.info(String);
---logger.info(String,options);
---logger.info(Object);
---logger.info(Object,options);
options
{color: 'blue'}
You can specify the log color of the current output,Only show color in terminal;
all levels: ['trance', 'debug', 'info', 'warn', 'error', 'fatal']
email Not completed, ongoing updates
Copyright (c) 2018-present, Yunzhou Dai
FAQs
Export the log to the console or file, customize the output log format, support sending mail to the designated mailbox;
We found that node-logger-easy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.