dnslink
A javascript dnslink resolution implementation. See ipfs/go-dnslink for more information.
Usage
update
Command Line
Create a dnslink binding via digitalocean.
An environment variable called DIGITAL_OCEAN_TOKEN
should be set.
$ jsdnslink update commontheory.io /ipfs/QmStyTZJJugmdFub1GBBGhtXpwxghT4EGvBCz8jNSLdBcy
Unable to find dnslink record, creating a new one
DNS record updated
JS/TS
import { update } from 'dnslink';
await update('commontheory.io', '/ipfs/QmStyTZJJugmdFub1GBBGhtXpwxghT4EGvBCz8jNSLdBcy');
update('commontheory.io', '/ipfs/QmStyTZJJugmdFub1GBBGhtXpwxghT4EGvBCz8jNSLdBcy')
.then(() => );
resolve
Get the CID associated with a domain. This evaluates via the DNS, not IPFS.
Command Line
$ jsdnslink resolve commontheory.io
/ipfs/QmStyTZJJugmdFub1GBBGhtXpwxghT4EGvBCz8jNSLdBcy
JS/TS
import { resolve } from 'dnslink';
const cid = await resolve('commontheory.io');
resolve('commontheory.io')
.then(cid => );
Note
This package is not maintained by, or affiliated with IPFS or Protocol Labs.