GithubHelp home page GithubHelp logo

isabella232 / js-datastore-pubsub Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ipfs/js-datastore-pubsub

0.0 0.0 0.0 1.24 MB

Responsible for providing an interface-datastore compliant api

License: MIT License

JavaScript 100.00%

js-datastore-pubsub's Introduction

datastore-pubsub

Dependency Status standard-readme js-standard-style

provides an implementation of an api for pubsub to be used as a datastore with TieredDatastore

Lead Maintainer

Vasco Santos.

Table of Contents

Install

npm install datastore-pubsub

Usage

const DatastorePubsub = require('datastore-pubsub')

const dsPubsub = new DatastorePubsub(pubsub, datastore, peerId, validator)

API

Setup

new DatastorePubsub(pubsub, datastore, peerId, validator, subscriptionKeyFn)

Creates a DatastorePubsub instance.

Arguments:

  • pubsub (Object): implementation of a pubsub (must have publish and subscribe functions), such as libp2p/pubsub.
  • datastore (Object): datastore compliant with interface-datastore, such as datastore-fs.
  • peerId (PeerId Instance): peer identifier object.
  • validator (Object): containing validate function and select function.
  • subscriptionKeyFn (function): function to manipulate the key topic received according to the needs, as well as to block the message received to be published.

Note: validator object must be composed by two functions, validate (record: uint8Array, peerId: PeerId) => boolean and select (received: uint8Array, current: uint8Array) => boolean. validate aims to verify if a new record received by pubsub is valid to be stored locally by the node. If it is valid and the node already has a local record stored, select is the function provided to be responsible for deciding which record is the best (newer) between the already stored and the received through pubsub. A validator example can be found at: TODO (js-ipns)

const dsPubsub = new DatastorePubsub(pubsub, datastore, peerId, validator)

Get

const buf = await dsPubsub.get(key)

Try to subscribe a topic with Pubsub and receive the current local value if available.

Arguments:

  • key (Uint8Array): a key representing a unique identifier of the object to subscribe.

Returns Promise<Uint8Array> containing the most recent known record stored.

Put

await dsPubsub.put(key, val)

Publishes a value through pubsub.

Arguments:

  • key (Uint8Array): a key representing a unique identifier of the object to publish.
  • val (Uint8Array): value to be propagated.

Returns Promise<void>

Unsubscribe

await dsPubsub.unsubscribe(key)

Unsubscribe a previously subscribe value.

Arguments:

  • key (Uint8Array): a key representing a unique identifier of the object to publish.

Returns Promise<void>

Contribute

Feel free to join in. All welcome. Open an issue!

This repository falls under the IPFS Code of Conduct.

License

Copyright (c) Protocol Labs, Inc. under the MIT License. See LICENSE file for details.

js-datastore-pubsub's People

Contributors

achingbrain avatar dependabot-preview[bot] avatar hsanjuan avatar hugomrdias avatar stensonb avatar vasco-santos avatar victorb avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.