multiaddr
Version:
multiaddr implementation (binary + string representation of network addresses)
140 lines (100 loc) • 4.58 kB
Markdown
js-multiaddr
============
[](http://ipn.io)
[](https://github.com/multiformats/multiformats)
[](https://webchat.freenode.net/?channels=%23ipfs)
[](https://david-dm.org/multiformats/js-multiaddr)
[](https://github.com/feross/standard)
[](https://github.com/RichardLitt/standard-readme)
[](https://travis-ci.com/multiformats/js-multiaddr)
[](https://codecov.io/gh/multiformats/js-multiaddr)
> JavaScript implementation of [multiaddr](https://github.com/multiformats/multiaddr).
[ ](https://github.com/jacobheun)
- [js-multiaddr](
- [Lead Maintainer](
- [Table of Contents](
- [Background](
- [What is multiaddr?](
- [Install](
- [NPM](
- [Browser: `<script>` Tag](
- [Usage](
- [API](
- [Resolvers](
- [Contribute](
- [License](
A standard way to represent addresses that
- support any standard network protocol
- are self-describing
- have a binary packed format
- have a nice string representation
- encapsulate well
```sh
npm i multiaddr
```
Loading this module through a script tag will make the `Multiaddr` obj available in
the global namespace.
```html
<script src="https://unpkg.com/multiaddr/dist/index.min.js"></script>
```
```js
// if we are coming from <= 8.x you can use the factory function
const { multiaddr } = require('multiaddr')
const addr = multiaddr("/ip4/127.0.0.1/udp/1234")
// <Multiaddr /ip4/127.0.0.1/udp/1234>
// or just the class directly
const { Multiaddr } = require('multiaddr')
const addr = new Multiaddr("/ip4/127.0.0.1/udp/1234")
// <Multiaddr /ip4/127.0.0.1/udp/1234>
addr.bytes
// <Uint8Array 04 7f 00 00 01 11 04 d2>
addr.toString()
// '/ip4/127.0.0.1/udp/1234'
addr.protos()
/*
[
{code: 4, name: 'ip4', size: 32},
{code: 273, name: 'udp', size: 16}
]
*/
// gives you an object that is friendly with what Node.js core modules expect for addresses
addr.nodeAddress()
/*
{
family: 4,
port: 1234,
address: "127.0.0.1"
}
*/
addr.encapsulate('/sctp/5678')
// <Multiaddr /ip4/127.0.0.1/udp/1234/sctp/5678>
```
https://multiformats.github.io/js-multiaddr/
`multiaddr` allows multiaddrs to be resolved when appropriate resolvers are provided. This module already has resolvers available, but you can also create your own. Resolvers should always be set in the same module that is calling `multiaddr.resolve()` to avoid conflicts if multiple versions of `multiaddr` are in your dependency tree.
To provide multiaddr resolvers you can do:
```js
const { Multiaddr } = require('multiaddr')
const resolvers = require('multiaddr/src/resolvers')
Multiaddr.resolvers.set('dnsaddr', resolvers.dnsaddrResolver)
```
The available resolvers are:
| Name | type | Description |
|-------------|------|-------------|
| `dnsaddrResolver` | `dnsaddr` | dnsaddr resolution with TXT Records |
A resolver receives a `Multiaddr` as a parameter and returns a `Promise<Array<string>>`.
Contributions welcome. Please check out [the issues](https://github.com/multiformats/js-multiaddr/issues).
Check out our [contributing document](https://github.com/multiformats/multiformats/blob/master/contributing.md) for more information on how we work, and about contributing in general. Please be aware that all interactions related to multiformats are subject to the IPFS [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md).
Small note: If editing the README, please conform to the [standard-readme](https://github.com/RichardLitt/standard-readme) specification.
[ ](LICENSE) © 2016 Protocol Labs Inc.