├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── generated-pr.yml │ ├── js-test-and-release.yml │ ├── semantic-pull-request.yml │ └── stale.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benchmarks └── operations │ ├── README.md │ ├── package.json │ ├── src │ └── index.ts │ ├── test │ └── index.ts │ └── tsconfig.json ├── package.json ├── src ├── components.ts ├── constants.ts ├── errors.ts ├── index.ts ├── multiaddr.ts ├── registry.ts ├── utils.ts └── validation.ts ├── test ├── codec.spec.ts ├── index.spec.ts ├── registry.spec.ts └── utils.spec.ts ├── tsconfig.json └── typedoc.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/generated-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/.github/workflows/generated-pr.yml -------------------------------------------------------------------------------- /.github/workflows/js-test-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/.github/workflows/js-test-and-release.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/.github/workflows/semantic-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/benchmarks/operations/README.md -------------------------------------------------------------------------------- /benchmarks/operations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/benchmarks/operations/package.json -------------------------------------------------------------------------------- /benchmarks/operations/src/index.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /benchmarks/operations/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/benchmarks/operations/test/index.ts -------------------------------------------------------------------------------- /benchmarks/operations/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/benchmarks/operations/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/package.json -------------------------------------------------------------------------------- /src/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/src/components.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/multiaddr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/src/multiaddr.ts -------------------------------------------------------------------------------- /src/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/src/registry.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/src/validation.ts -------------------------------------------------------------------------------- /test/codec.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/test/codec.spec.ts -------------------------------------------------------------------------------- /test/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/test/index.spec.ts -------------------------------------------------------------------------------- /test/registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/test/registry.spec.ts -------------------------------------------------------------------------------- /test/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/test/utils.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiformats/js-multiaddr/HEAD/typedoc.json --------------------------------------------------------------------------------