super_dns 0.1.1
super_dns: ^0.1.1 copied to clipboard
A modern Dart package for working with the DNS protocol, supporting query parsing, encoding, and response handling with IPv4/IPv6 support. Updated for Dart 3.8.1 and compatible with the Super IP/Raw stack.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate super_dnsUse it
The package has the following executables:
$ dns_proxy
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add super_dnsWith Flutter:
$ flutter pub add super_dnsThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
super_dns: ^0.1.1Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:super_dns/super_dns.dart';