JSPM

@gapi/ipfs-pubsub

0.7.286
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q155355F
  • License MIT

Package Exports

  • @gapi/ipfs-pubsub

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@gapi/ipfs-pubsub) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@Gapi Ipfs InterPlanetary File System Pub Sub Module (Beta)

More information about IPFS system can be find here IPFS-WIKI
For questions/issues you can write ticket here
This module is intended to be used with GAPI

@gapi/ipfs hello world ipfs address:

https://ipfs.io/ipfs/QmPhYdx4dB6TwBU1KEbYmyET7HQJoLpyERvRD4kMWv3B3a

Installation and basic examples:

To install this Gapi module, run:
$ npm install @gapi/ipfs-pubsub --save

Consuming @gapi/ipfs-pubsub

Import inside AppModule or CoreModule
import { GapiModule, Service } from '@gapi/core';
import { GapiIpfsPubSubModule, GapiIpfsPubSubRoom } from '@gapi/ipfs-pubsub';


@Service()
export class TestRoom implements GapiIpfsPubSubRoom {
    name: string = 'TestRoom';

    constructor(
        @Inject(OrbitDb) private orbitdb: Promise<OrbitDb>
        @Inject(GapiIpfsPubSubRoom) private ipfsPubSubRoom: GapiIpfsPubSubRoom
        @Inject(IPFS) private ipfs: IPFS
    ) {

    }
}

@GapiModule({
    imports: [
        GapiIpfsPubSubModule.forRoot({
            rooms: [TestRoom],
            logging: true
        }),
    ]
})
export class CoreModule { }

TODO: Better documentation...

Enjoy ! :)