New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

pull-jq

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pull-jq

pull-stream binding to jq (from node-jq to libjq)

latest
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Pull-JQ

npm install pull-jq

Example

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

FAQs

Package last updated on 21 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts