{"maintainers":[{"name":"anonymous","email":"thlorenz@gmx.de"}],"dist-tags":{"latest":"0.1.1"},"author":{"name":"Thorsten Lorenz","email":"thlorenz@gmx.de","url":"http://thlorenz.com"},"description":"/dev/null for node streams","readme":"# dev-null [![build status](https://secure.travis-ci.org/thlorenz/dev-null.png)](http://travis-ci.org/thlorenz/dev-null)\n\n`/dev/null` for node streams\n\nUse it whenever you need to interrupt stream flow for instance if you want to log the state of a stream instead of its\noutput.\n\n```js\n// without devnull\nvar numbers = require('../test/fixtures/number-readable')\n\nnumbers({ to: 2 })\n  .on('data', function (d) { console.log(d.toString()) });\n// => \n// 0\n// 1\n// 2\n```\n\n```js\n// piping into devnull\nvar devnull = require('dev-null');\nvar numbers = require('../test/fixtures/number-readable');\n\nnumbers({ to: 2 })\n  .pipe(devnull())\n  .on('data', function (d) { console.log(d.toString()) });\n\n// => (no output)\n```\n\n## Installation\n\n    npm install dev-null\n\n## License\n\nMIT\n","repository":{"type":"git","url":"git://github.com/thlorenz/dev-null.git"},"users":{"clux":true,"tosbodes":true},"versions":{"0.1.0":{"name":"dev-null","version":"0.1.0","description":"/dev/null for node streams","main":"index.js","scripts":{"test-main":"tap test/*.js","test-0.10":"nave use 0.10 npm run test-main","test-all":"npm run test-main && npm run test-0.10","test":"if [ -e $TRAVIS ]; then npm run test-all; else npm run test-main; fi"},"repository":{"type":"git","url":"git://github.com/thlorenz/dev-null.git"},"homepage":"https://github.com/thlorenz/dev-null","dependencies":{},"devDependencies":{"nave":"~0.4.3","tap":"~0.4.3","tap-stream":"~0.2.0"},"keywords":[],"author":{"name":"Thorsten Lorenz","email":"thlorenz@gmx.de","url":"http://thlorenz.com"},"license":{"type":"MIT","url":"https://github.com/thlorenz/dev-null/blob/master/LICENSE"},"engine":{"node":">=0.10"},"readme":"# dev-null [![build status](https://secure.travis-ci.org/thlorenz/dev-null.png)](http://travis-ci.org/thlorenz/dev-null)\n\n`/dev/null` for node streams\n\nUse it whenever you need to interrupt stream flow for instance if you want to log the state of a stream instead of its\noutput.\n\n```js\n// without devnull\nvar numbers = require('../test/fixtures/number-readable')\n\nnumbers({ to: 2 })\n  .on('data', function (d) { console.log(d.toString()) });\n// => \n// 0\n// 1\n// 2\n```\n\n```js\n// piping into devnull\nvar devnull = require('dev-null');\nvar numbers = require('../test/fixtures/number-readable');\n\nnumbers({ to: 2 })\n  .pipe(devnull())\n  .on('data', function (d) { console.log(d.toString()) });\n\n// => (no output)\n```\n\n## Installation\n\n    npm install dev-null\n\n## License\n\nMIT\n","readmeFilename":"README.md","bugs":{"url":"https://github.com/thlorenz/dev-null/issues"},"_id":"dev-null@0.1.0","dist":{"shasum":"232c298c6e6733f56f6c09752f01d1b7c6427c0a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dev-null/-/dev-null-0.1.0.tgz","integrity":"sha512-30FxOK+oFsreMaJ26LSWY1za0hAnE39jNQHAq6hcbz7Ml9ha+Kj3llLlUWWvVzS4tmVgB2dyez7afvmH3gNW4Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF2VDdF37+7blWuA1QCBhc/MST/l1x6cFIcu60JFs2DpAiEA0TmBkYj2mujDM8uChxvdCM4NR5p7Icnh3WG3cN2O11U="}]},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"anonymous","email":"thlorenz@gmx.de"},"maintainers":[{"name":"anonymous","email":"thlorenz@gmx.de"}]},"0.1.1":{"name":"dev-null","version":"0.1.1","description":"/dev/null for node streams","main":"index.js","scripts":{"test-main":"tap test/*.js","test-0.10":"nave use 0.10 npm run test-main","test-all":"npm run test-main && npm run test-0.10","test":"if [ -e $TRAVIS ]; then npm run test-all; else npm run test-main; fi"},"repository":{"type":"git","url":"git://github.com/thlorenz/dev-null.git"},"homepage":"https://github.com/thlorenz/dev-null","dependencies":{},"devDependencies":{"nave":"~0.4.3","tap":"~0.4.3","tap-stream":"~0.2.0"},"keywords":["streams","test","debug","ignore","silence"],"author":{"name":"Thorsten Lorenz","email":"thlorenz@gmx.de","url":"http://thlorenz.com"},"license":{"type":"MIT","url":"https://github.com/thlorenz/dev-null/blob/master/LICENSE"},"engine":{"node":">=0.10"},"readme":"# dev-null [![build status](https://secure.travis-ci.org/thlorenz/dev-null.png)](http://travis-ci.org/thlorenz/dev-null)\n\n`/dev/null` for node streams\n\nUse it whenever you need to interrupt stream flow for instance if you want to log the state of a stream instead of its\noutput.\n\n```js\n// without devnull\nvar numbers = require('../test/fixtures/number-readable')\n\nnumbers({ to: 2 })\n  .on('data', function (d) { console.log(d.toString()) });\n// => \n// 0\n// 1\n// 2\n```\n\n```js\n// piping into devnull\nvar devnull = require('dev-null');\nvar numbers = require('../test/fixtures/number-readable');\n\nnumbers({ to: 2 })\n  .pipe(devnull())\n  .on('data', function (d) { console.log(d.toString()) });\n\n// => (no output)\n```\n\n## Installation\n\n    npm install dev-null\n\n## License\n\nMIT\n","readmeFilename":"README.md","bugs":{"url":"https://github.com/thlorenz/dev-null/issues"},"_id":"dev-null@0.1.1","dist":{"shasum":"5a205ce3c2b2ef77b6238d6ba179eb74c6a0e818","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dev-null/-/dev-null-0.1.1.tgz","integrity":"sha512-nMNZG0zfMgmdv8S5O0TM5cpwNbGKRGPCxVsr0SmA3NZZy9CYBbuNLL0PD3Acx9e5LIUgwONXtM9kM6RlawPxEQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC4z7RR6n2r5q/b1/IbUNhEBC1VLkjSvx2O6ft6OhW55AiB9XHMiPn5NlNC6meoAnO7xlxOUZvqDRJpZbJhCkcJgtA=="}]},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"anonymous","email":"thlorenz@gmx.de"},"maintainers":[{"name":"anonymous","email":"thlorenz@gmx.de"}]}},"name":"dev-null","time":{"modified":"2022-06-15T02:08:47.247Z","created":"2013-09-10T10:36:04.200Z","0.1.0":"2013-09-10T10:36:07.794Z","0.1.1":"2013-09-10T10:52:53.792Z"}}