{"id":15497487,"url":"https://github.com/heapwolf/pipe","last_synced_at":"2025-04-22T22:03:40.795Z","repository":{"id":57324736,"uuid":"11985973","full_name":"heapwolf/pipe","owner":"heapwolf","description":"Unix style pipes for nodejs streams `streamA | streamB | streamA`","archived":false,"fork":false,"pushed_at":"2016-03-24T22:17:12.000Z","size":6,"stargazers_count":46,"open_issues_count":1,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-04-14T09:03:22.576Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/heapwolf.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-08-08T20:34:44.000Z","updated_at":"2023-09-08T16:41:20.000Z","dependencies_parsed_at":"2022-09-04T11:51:16.131Z","dependency_job_id":null,"html_url":"https://github.com/heapwolf/pipe","commit_stats":null,"previous_names":["hij1nx/pipechain"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heapwolf%2Fpipe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heapwolf%2Fpipe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heapwolf%2Fpipe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heapwolf%2Fpipe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/heapwolf","download_url":"https://codeload.github.com/heapwolf/pipe/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250331803,"owners_count":21413100,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-02T08:38:35.219Z","updated_at":"2025-04-22T22:03:40.726Z","avatar_url":"https://github.com/heapwolf.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![build-status](https://www.codeship.io/projects/45c20710-4c8c-0131-15d5-5a8cd3f550f8/status)](https://www.codeship.io/projects/11261)\n\n# SYNOPSIS\nProvides pipes by operator instead of a chain.\n\n# DESCRIPTION\nPipe streams together with a simpler syntax, like `a | b | c`\n\n# EXAMPLES\n`pipe` does not require `through`, i just like using through.\n\n```js\nvar through = require('through')\nrequire('pipe').install()\n\nvar a = through(function(d) {\n  this.queue(d.toString().toUpperCase())\n})\n\nvar b = through(function(d) {\n  this.queue(d.split('-').join(','))\n})\n\nvar c = through(function(d) {\n  this.queue(d.split(',').reverse().toString())\n})\n\na | b | c | process.stdout\n\na.write('a-s-d-f') // OMG WTF? =\u003e F,D,S,A\n```\n\nIt is also possible to to install pipe directly by\nrequiring the `register` module which can be handy with ES6:\n\n```js\nimport 'pipe/register'\n\n// Instead of:\nimport pipe from 'pipe'\npipe.install()\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheapwolf%2Fpipe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheapwolf%2Fpipe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheapwolf%2Fpipe/lists"}