Socket
Socket
Sign inDemoInstall

datcat

Package Overview
Dependencies
118
Maintainers
12
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    datcat

module to simplify streaming a remote hypercore feed and catting the results


Version published
Weekly downloads
5
Maintainers
12
Install size
4.48 MB
Created
Weekly downloads
 

Readme

Source

deprecated

More info on active projects and modules at dat-ecosystem.org


datcat

module to simplify streaming a remote hypercore feed in memory so you can cat the results. works with 'raw' hypercores or hyperdrives. autodetects hyperdrive/dat encoding and decodes metadata for you automatically.

usage

var stream = require('datcat')(datLink)
stream
  .on('data', function (d) {
    console.log(d)
  })
  .on('end', function () {
    stream.close()
  })

note you must call .close() manually to unref and allow your process to exit (if you need that)

FAQs

Last updated on 06 Jan 2022

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc