{"_id":"bunyan-prettystream","_rev":"14-11e73304dc484d165d17c8bfd7e000c9","name":"bunyan-prettystream","description":"A stream implementation of the bunyan cli tool's pretty printing capabilities","dist-tags":{"latest":"0.1.3"},"versions":{"0.1.0":{"name":"bunyan-prettystream","version":"0.1.0","description":"A stream implementation of the bunyan cli tool's pretty printing capabilities","author":{"name":"Amar Suhail","email":"amar.suhail@gmail.com"},"main":"./lib/prettystream.js","repository":{"type":"git","url":"git://github.com/mrrama/node-bunyan-prettystream.git"},"engines":["node >=0.6.0"],"keywords":["log","logging","console","bunyan","development","stream"],"devDependencies":{"mocha":"1.11.0","blanket":"1.1.5","mocha-lcov-reporter":"0.0.1","coveralls":"2.0.13","travis-cov":"0.2.4","should":"1.2.2"},"scripts":{"test":"make test","travis-cov":{"threshold":70}},"readme":"  [![Build Status](https://secure.travis-ci.org/mrrrama/node-bunyan-prettystream.png?branch=master)](http://travis-ci.org/mrrama/node-bunyan-prettystream)\n  [![Coverage Status](https://coveralls.io/repos/mrrama/node-bunyan-prettystream/badge.png?branch=master)](https://coveralls.io/r/mrrama/node-bunyan-prettystream?branch=master)\n\nbunyan-prettystream is a stream based implementation of the [Bunyan][bunyan] CLI tool's pretty printing capabilities. It allows\napps using bunyan to log directly to the console or file in human readable format instead of as JSON without having to\nrun or pipe into the bunyan tool. This is useful for working with IDEs which do not have the ability to pipe console\noutput to another application (such as WebStorm).\n\nThis library is only really meant for development and should not be used on production environments.\n\n# Usage\n\n  ```javascript\n  var bunyan = require('bunyan');\n  var PrettyStream = require('bunyan-prettystream');\n\n  var prettyStdOut = new PrettyStream();\n  prettyStdOut.pipe(process.stdout);\n\n  var log = bunyan.createLogger({\n          name: 'foo',\n          streams: [{\n              level: 'debug',\n              type: 'raw',\n              stream: prettyStdOut\n          }]\n  });\n  ```\n\n# Tests\n\nRunning unit tests requires `mocha` installed.\n\n  ```bash\n  make test\n  ```\n\n## Coverage\n\n  ```bash\n  make coverage\n  ```\n\n# License\n\n(The MIT License)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n[bunyan]: https://github.com/trentm/node-bunyan\n\n","readmeFilename":"readme.md","bugs":{"url":"https://github.com/mrrama/node-bunyan-prettystream/issues"},"_id":"bunyan-prettystream@0.1.0","dist":{"shasum":"ec4df23c7218bfa956a259e813f7b09368801575","tarball":"https://registry.npmjs.org/bunyan-prettystream/-/bunyan-prettystream-0.1.0.tgz","integrity":"sha512-83awtbRlvUk5ko+Moukl84g5VAeTVHoCdd/brTW8Gz0hgc91EXbJxf8I/GZD2vmwnLfS+iVnqThLrSkCqsNg4w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC8SHj4QEsvZAT7IDBuaIq3Zusc+2UXuyhgxTxYNCtCtAiEA88NfyTtYvMPmjQJjYpCRYfMhOgQ7MFrTTfsi6MNIPpk="}]},"_from":".","_npmVersion":"1.2.20","_npmUser":{"name":"amar.suhail","email":"amar.suhail@gmail.com"},"maintainers":[{"name":"amar.suhail","email":"amar.suhail@gmail.com"}]},"0.1.2":{"name":"bunyan-prettystream","version":"0.1.2","description":"A stream implementation of the bunyan cli tool's pretty printing capabilities","author":{"name":"Amar Suhail","email":"amar.suhail@gmail.com"},"main":"./lib/prettystream.js","repository":{"type":"git","url":"git://github.com/mrrama/node-bunyan-prettystream.git"},"engines":["node >=0.8.0"],"keywords":["log","logging","console","bunyan","development","stream"],"devDependencies":{"mocha":"1.11.0","blanket":"1.1.5","mocha-lcov-reporter":"0.0.1","coveralls":"2.0.13","travis-cov":"0.2.4","should":"1.2.2"},"scripts":{"test":"make test","travis-cov":{"threshold":70}},"readme":"  [![Build Status](https://secure.travis-ci.org/mrrama/node-bunyan-prettystream.png?branch=master)](http://travis-ci.org/mrrama/node-bunyan-prettystream)\n  [![Coverage Status](https://coveralls.io/repos/mrrama/node-bunyan-prettystream/badge.png?branch=master)](https://coveralls.io/r/mrrama/node-bunyan-prettystream?branch=master)\n\nbunyan-prettystream is a stream based implementation of the [Bunyan][bunyan] CLI tool's pretty printing capabilities. It allows\napps using bunyan to log directly to the console or file in human readable format instead of as JSON without having to\nrun or pipe into the bunyan tool. This is useful for working with IDEs which do not have the ability to pipe console\noutput to another application (such as WebStorm).\n\nThis library is only really meant for development and should not be used on production environments.\n\n# Usage\n\n  ```javascript\n  var bunyan = require('bunyan');\n  var PrettyStream = require('bunyan-prettystream');\n\n  var prettyStdOut = new PrettyStream();\n  prettyStdOut.pipe(process.stdout);\n\n  var log = bunyan.createLogger({\n          name: 'foo',\n          streams: [{\n              level: 'debug',\n              type: 'raw',\n              stream: prettyStdOut\n          }]\n  });\n  ```\n\n# Tests\n\nRunning unit tests requires `mocha` installed.\n\n  ```bash\n  make test\n  ```\n\n## Coverage\n\n  ```bash\n  make coverage\n  ```\n\n# License\n\n(The MIT License)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n[bunyan]: https://github.com/trentm/node-bunyan\n\n","readmeFilename":"readme.md","bugs":{"url":"https://github.com/mrrama/node-bunyan-prettystream/issues"},"_id":"bunyan-prettystream@0.1.2","dist":{"shasum":"9cdb53d6c9500ca04492a855647860aaeeda0a73","tarball":"https://registry.npmjs.org/bunyan-prettystream/-/bunyan-prettystream-0.1.2.tgz","integrity":"sha512-epPGZhE0jArmO9G9HzBDNxDZlTtSeorgElm23Hr9C4tY+vkSbOEzJhwcVvk0RUVSWux1fMzuayKEde/qRhYnRw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHpJdli+a7n2harRJsr4iI847eZQzxkpVC5zpjEqr6ZfAiEA4XwAFXkheqbQvbY39HV9xEDdGPelJ36biltlfIcRq0E="}]},"_from":".","_npmVersion":"1.2.20","_npmUser":{"name":"amar.suhail","email":"amar.suhail@gmail.com"},"maintainers":[{"name":"amar.suhail","email":"amar.suhail@gmail.com"}]},"0.1.3":{"name":"bunyan-prettystream","version":"0.1.3","description":"A stream implementation of the bunyan cli tool's pretty printing capabilities","author":{"name":"Amar Suhail","email":"amar.suhail@gmail.com"},"main":"./lib/prettystream.js","repository":{"type":"git","url":"git://github.com/mrrama/node-bunyan-prettystream.git"},"engines":["node >=0.8.0"],"keywords":["log","logging","console","bunyan","development","stream"],"devDependencies":{"mocha":"1.11.0","blanket":"1.1.5","mocha-lcov-reporter":"0.0.1","coveralls":"2.0.13","travis-cov":"0.2.4","should":"1.2.2"},"scripts":{"test":"make test","travis-cov":{"threshold":70}},"readme":"  [![Build Status](https://secure.travis-ci.org/mrrama/node-bunyan-prettystream.png?branch=master)](http://travis-ci.org/mrrama/node-bunyan-prettystream)\n  [![Coverage Status](https://coveralls.io/repos/mrrama/node-bunyan-prettystream/badge.png?branch=master)](https://coveralls.io/r/mrrama/node-bunyan-prettystream?branch=master)\n\nbunyan-prettystream is a stream based implementation of the [Bunyan][bunyan] CLI tool's pretty printing capabilities. It allows\napps using bunyan to log directly to the console or file in human readable format instead of as JSON without having to\nrun or pipe into the bunyan tool. This is useful for working with IDEs which do not have the ability to pipe console\noutput to another application (such as WebStorm).\n\nThis library is only really meant for development and should not be used on production environments.\n\n# Usage\n\n  ```javascript\n  var bunyan = require('bunyan');\n  var PrettyStream = require('bunyan-prettystream');\n\n  var prettyStdOut = new PrettyStream();\n  prettyStdOut.pipe(process.stdout);\n\n  var log = bunyan.createLogger({\n          name: 'foo',\n          streams: [{\n              level: 'debug',\n              type: 'raw',\n              stream: prettyStdOut\n          }]\n  });\n  ```\n\n# Tests\n\nRunning unit tests requires `mocha` installed.\n\n  ```bash\n  make test\n  ```\n\n## Coverage\n\n  ```bash\n  make coverage\n  ```\n\n# License\n\n(The MIT License)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n[bunyan]: https://github.com/trentm/node-bunyan\n\n","readmeFilename":"readme.md","bugs":{"url":"https://github.com/mrrama/node-bunyan-prettystream/issues"},"_id":"bunyan-prettystream@0.1.3","dist":{"shasum":"6c3b713266f6ad32007c7b6ab1e998a245349d98","tarball":"https://registry.npmjs.org/bunyan-prettystream/-/bunyan-prettystream-0.1.3.tgz","integrity":"sha512-ovZoJY65kWByTUEDu1gMB89t+NGV9Ixm7azEhp2zXiGfSTvPGlu8+HFiVp6XuEQw0P6OS0oyi/Za6gknsl8Bwg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEC2aR66P3F/MeFJA0T28LB6gKUuvoMvodpc+/opRJiUAiB1Nzls7Ygt7Igo3Q3xG+n/AJrevNURDI+eAqgbdbmWjA=="}]},"_from":".","_npmVersion":"1.2.20","_npmUser":{"name":"amar.suhail","email":"amar.suhail@gmail.com"},"maintainers":[{"name":"amar.suhail","email":"amar.suhail@gmail.com"}]}},"readme":"  [![Build Status](https://secure.travis-ci.org/mrrrama/node-bunyan-prettystream.png?branch=master)](http://travis-ci.org/mrrama/node-bunyan-prettystream)\n  [![Coverage Status](https://coveralls.io/repos/mrrama/node-bunyan-prettystream/badge.png?branch=master)](https://coveralls.io/r/mrrama/node-bunyan-prettystream?branch=master)\n\nbunyan-prettystream is a stream based implementation of the [Bunyan][bunyan] CLI tool's pretty printing capabilities. It allows\napps using bunyan to log directly to the console or file in human readable format instead of as JSON without having to\nrun or pipe into the bunyan tool. This is useful for working with IDEs which do not have the ability to pipe console\noutput to another application (such as WebStorm).\n\nThis library is only really meant for development and should not be used on production environments.\n\n# Usage\n\n  ```javascript\n  var bunyan = require('bunyan');\n  var PrettyStream = require('bunyan-prettystream');\n\n  var prettyStdOut = new PrettyStream();\n  prettyStdOut.pipe(process.stdout);\n\n  var log = bunyan.createLogger({\n          name: 'foo',\n          streams: [{\n              level: 'debug',\n              type: 'raw',\n              stream: prettyStdOut\n          }]\n  });\n  ```\n\n# Tests\n\nRunning unit tests requires `mocha` installed.\n\n  ```bash\n  make test\n  ```\n\n## Coverage\n\n  ```bash\n  make coverage\n  ```\n\n# License\n\n(The MIT License)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n[bunyan]: https://github.com/trentm/node-bunyan\n\n","maintainers":[{"name":"amar.suhail","email":"amar.suhail@gmail.com"}],"time":{"modified":"2022-06-13T05:19:07.703Z","created":"2013-06-24T19:54:26.115Z","0.1.0":"2013-06-24T19:54:27.673Z","0.1.2":"2013-07-02T18:58:38.520Z","0.1.3":"2013-07-15T14:22:48.442Z"},"author":{"name":"Amar Suhail","email":"amar.suhail@gmail.com"},"repository":{"type":"git","url":"git://github.com/mrrama/node-bunyan-prettystream.git"},"users":{"klipsil":true,"jlsjonas":true,"arielfr":true,"icodeforcookies":true,"vparaskevas":true}}