3.3.2 • Published 11 months ago

@libp2p/interfaces v3.3.2

Weekly downloads
-
License
Apache-2.0 OR MIT
Repository
github
Last release
11 months ago

@libp2p/interfaces

libp2p.io Discuss codecov CI

Common code shared by the various libp2p interfaces

Table of contents

Install

$ npm i @libp2p/interfaces

Usage

AbortError

Throw an error with a .code property of 'ABORT_ERR':

import { AbortError } from '@libp2p/interfaces/errors'

throw new AbortError()

Events

Typed events:

import { EventEmitter, CustomEvent } from '@libp2p/interfaces/events'

export interface MyEmitterEvents {
  'some-event': CustomEvent<number>;
}

class MyEmitter extends EventEmitter<MyEmitterEvents> {

}

// later
const myEmitter = new MyEmitter()
myEmitter.addEventListener('some-event', (evt) => {
  const num = evt.detail // <-- inferred as number
})

AbortOptions

import type { AbortOptions } from '@libp2p/interfaces'

Startable

Lifecycles for components

import { start, stop, isStartable } from '@libp2p/interfaces/startable'
import type { Startable } from '@libp2p/interfaces/startable'

class MyStartable implements Startable {
  // .. implementation methods
}

const myStartable = new MyStartable()

isStartable(myStartable) // returns true

await start(myStartable)
await stop(myStartable)

API Docs

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

3.3.2-3dfc236e

11 months ago

3.3.2-5a9fb4d6

11 months ago

3.3.2-ea8a0637

11 months ago

3.3.2-ab0e3980

11 months ago

3.3.2-8c6b6d24

11 months ago

3.3.2-d853d124

11 months ago

3.3.2-883082ca

11 months ago

3.3.2

12 months ago

3.3.2-d2f1eff4

11 months ago

3.3.2-1c6702c8

11 months ago

3.0.4

1 year ago

3.2.0

1 year ago

3.0.6

1 year ago

3.0.5

1 year ago

3.3.1

1 year ago

3.3.0

1 year ago

3.1.0

1 year ago

2.0.4

2 years ago

3.0.3

2 years ago

3.0.2

2 years ago

3.0.1

2 years ago

3.0.0

2 years ago

2.0.3

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.3.29

2 years ago

1.3.31

2 years ago

1.3.32

2 years ago

1.3.30

2 years ago

1.3.17

2 years ago

1.3.18

2 years ago

1.3.19

2 years ago

1.3.20

2 years ago

1.3.21

2 years ago

1.3.24

2 years ago

1.3.25

2 years ago

1.3.22

2 years ago

1.3.23

2 years ago

1.3.28

2 years ago

1.3.26

2 years ago

1.3.27

2 years ago

1.3.13

2 years ago

1.3.14

2 years ago

1.3.12

2 years ago

1.3.15

2 years ago

1.3.16

2 years ago

1.3.11

2 years ago

1.3.10

2 years ago

1.3.9

2 years ago

1.3.8

2 years ago

1.3.7

2 years ago

1.3.6

2 years ago

1.3.5

2 years ago

1.3.4

2 years ago

1.3.3

2 years ago

1.3.2

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.0

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.2.0

2 years ago

0.0.0

2 years ago