|
33 | 33 |
|
34 | 34 | ## Table of Contents
|
35 | 35 |
|
| 36 | +- [Lead Maintainer](#lead-maintainer) |
| 37 | +- [Table of Contents](#table-of-contents) |
36 | 38 | - [Install](#install)
|
37 | 39 | - [Running the daemon with the right port](#running-the-daemon-with-the-right-port)
|
38 | 40 | - [Importing the module and usage](#importing-the-module-and-usage)
|
39 | 41 | - [Importing a sub-module and usage](#importing-a-sub-module-and-usage)
|
40 |
| - - [In a web browser through Browserify](#in-a-web-browser-through-browserify) |
41 |
| - - [In a web browser from CDN](#in-a-web-browser-from-cdn) |
| 42 | + - [In a web browser](#in-a-web-browser) |
42 | 43 | - [CORS](#cors)
|
| 44 | + - [Custom Headers](#custom-headers) |
43 | 45 | - [Usage](#usage)
|
44 |
| - - [API Docs](#api) |
45 |
| - - [Callbacks and promises](#callbacks-and-promises) |
| 46 | + - [API](#api) |
| 47 | + - [Files](#files) |
| 48 | + - [Graph](#graph) |
| 49 | + - [Network](#network) |
| 50 | + - [Node Management](#node-management) |
| 51 | + - [Pubsub Caveat](#pubsub-caveat) |
| 52 | + - [Domain data types](#domain-data-types) |
| 53 | + - [Extra (util) functions](#extra-util-functions) |
| 54 | + - [Get endpoint configuration (host and port)](#get-endpoint-configuration-host-and-port) |
| 55 | + - [Get libp2p crypto primitives](#get-libp2p-crypto-primitives) |
| 56 | + - [Get is-ipfs utilities](#get-is-ipfs-utilities) |
| 57 | +- [Development](#development) |
| 58 | + - [Testing](#testing) |
46 | 59 | - [Contribute](#contribute)
|
| 60 | +- [Historical context](#historical-context) |
47 | 61 | - [License](#license)
|
48 | 62 |
|
49 | 63 | ## Install
|
@@ -271,6 +285,7 @@ const ipfs = ipfsClient({
|
271 | 285 | - [`ipfs.pubsub.publish(topic, data, [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/PUBSUB.md#pubsubpublish)
|
272 | 286 | - [`ipfs.pubsub.subscribe(topic, handler, [options], [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/PUBSUB.md#pubsubsubscribe)
|
273 | 287 | - [`ipfs.pubsub.unsubscribe(topic, handler, [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/PUBSUB.md#pubsubunsubscribe)
|
| 288 | + - [`ipfs.pubsub.unsubscribeAll(topic, [callback])`]() |
274 | 289 |
|
275 | 290 | - [swarm](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/SWARM.md)
|
276 | 291 | - [`ipfs.swarm.addrs([callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/SWARM.md#swarmaddrs)
|
|
0 commit comments