YogiLiu / dart_multiaddr

Composable and future-proof network addresses.

Home Page:https://pub.dev/packages/dart_multiaddr

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dart_multiaddr

multiaddr implementation in Dart

Multiaddr aims to make network addresses future-proof, composable, and efficient.

Warning: This is a work in progress. The API is not stable yet.

Usage

import 'package:dart_multiaddr/dart_multiaddr.dart';

void main() {
  var addr = Multiaddr.fromString('/ip4/1.1.1.1');
  print(addr.toString());  // Output: /ip4/1.1.1.1

  var anotherAddr = Multiaddr.fromString('/ip4/1.1.1.1');
  print(addr == anotherAddr);  // Output: true
}

License

MIT © 2023 YogiLiu

About

Composable and future-proof network addresses.

https://pub.dev/packages/dart_multiaddr

License:MIT License


Languages

Language:Dart 100.0%