Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/christianbundy/pull-jq
https://github.com/christianbundy/pull-jq
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/christianbundy/pull-jq
- Owner: christianbundy
- Created: 2020-04-21T04:03:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-11T04:32:01.000Z (almost 2 years ago)
- Last Synced: 2024-10-18T16:48:05.785Z (26 days ago)
- Language: JavaScript
- Size: 85.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pull-JQ
```sh
npm install pull-jq
```## Example
```javascript
const pullJq = require("pull-jq");
const pull = require("pull-stream");pull(
pull.values([
{ seq: 0, text: "hello" },
{ seq: 1, text: "world" },
{ seq: 2, text: "!" },
]),
pullJq(".text"),
pull.drain(console.log)
);
```## License
AGPL-3.0