@rumblr/dns
v1.0.5
Published
Resolve .mito domains powered by the Rumblr protocol
Readme
Rumblr DNS for .mito Domains
Rumblr DNS helps you resolve .mito domains powered by the Rumblr protocol. It is simple to use, secure, and pretty fast!
Installation
You'll need Node.js installed to get started.
1. Install the package:
You can install this package using npm or yarn.
# Install using npm
npm install @rumblr/dns
# For use from the command line
yarn add @rumblr/dnsUsage
To utilize the DNS, simply import the package, initialize the class, and use the resolve() method as shown below:
import RumblrDNS from '@rumblr/dns';
async function resolveDomain(domain) {
try {
const rumblrDNS = new RumblrDNS();
const resolved = await rumblrDNS.resolve(domain);
console.log('Resolution Result: ', resolved);
} catch (error) {
console.error('Resolution failed:', error);
}
}
resolveDomain('harry.mito');Contributing
Found a bug or have an idea? Please open an issue or submit a pull request!
License
This project is licensed under the MIT License.

