root 3bf41bf355 update | 1 rok pred | |
---|---|---|
.. | ||
config | 1 rok pred | |
.eslintrc | 1 rok pred | |
.gitattributes | 1 rok pred | |
.travis.yml | 1 rok pred | |
CHANGELOG.md | 1 rok pred | |
LICENSE | 1 rok pred | |
README.md | 1 rok pred | |
index.js | 1 rok pred | |
package.json | 1 rok pred | |
test.js | 1 rok pred |
Definitions of levels for logging purposes & shareable Symbol constants.
const { LEVEL } = require('triple-beam');
const colors = require('colors/safe');
const info = {
[LEVEL]: 'error',
level: 'error',
message: 'hey a logging message!'
};
// Colorize your log level!
info.level = colors.green(info.level);
// And still have an unmutated copy of your level!
console.log(info.level === 'error'); // false
console.log(info[LEVEL] === 'error'); // true
Tests are written with mocha
, assume
, and nyc
. They can be run with npm
:
npm test