Package Exports
- jsome
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jsome) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Make your JSON objects look AWSOME !!
This package allows you to display your json object on the console in a pretty format with colors.
Installation :
$ npm install jsome
on your nodejs application, when you need to console.log a json object, all you need to do is to use the jsome function:
var jsome = require('jsome');
var jsome({
a: 1,
b: 'Test string',
c: true,
d: [1,2,3],
e: {
f: 'test',
g: {}
}
});
Then your json object will be displayed on the console in a pretty format with Awsome colors !