Skip to content

RangerMauve/intercept-hypercore-storage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

intercept-hypercore-storage

Intercept the data storage in a hypercore. Made for the datdot project

npm i --save intercept-hypercore-storage
const intercept = require('intercept-hypercore-storage')

// Get an instance of a hypercore
const feed = hypercore()

// Start intercepting
const unintercept = intercept(feed, {
  // This tells you to save the data somewhere
  // Only the data storage is intercepted
  // The storage of the signatures is being stored normally
  // The `index` is the index of the chunk in the hypercore
  putData: (index, data, cb) => cb(null),
  // Use this to retrieve the data you stored
  getData: (index, cb) => cb(null, thedata)
})

// Replicate the feed with a peer
feed.replicate({stream})

// If you're done intercepting and want to clean up the monkey patching, use this.
unintercept()

How it works

The module will monkey-patch your hypercore instance and intercept it's attempts to store and retrieve the data portion.

About

Intercept the data storage in a hypercore. Made for the datdot project

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published