Kevin 29b9a0c50c clean && clean html base | 4 years ago | |
---|---|---|
.. | ||
LICENSE.md | 4 years ago | |
README.md | 4 years ago | |
index.js | 4 years ago | |
package.json | 4 years ago |
Tiny log utility
$ npm install --save logalot
var log = require('logalot');
log.info('this is a message');
log.warn('this is a warning');
log.success('this is a success message');
log.error(new Error('this is a error').stack);
/*
ℹ this is a message
⚠ this is a warning
✔ this is a success message
✖ Error: this is an error
at ChildProcess.exithandler (child_process.js:648:15)
at ChildProcess.emit (events.js:98:17)
*/
MIT © imagemin