Comment on page
ENS Libraries
ENS support is available in many popular languages. If you know of a library that is not listed here, please send us a PR.
We also have a component library for React called Thorin if you're looking for a design system to build your dapp with.
If you are already using web3.js or ethers.js, and do not require functionality such as creating subdomains, transferring ownership, or updating resolvers, use built in ENS features of these libraries.
If you are using React and only need to do forward and reverse resolution of ENS names, use wagmi.
If you want to have ENS instance deployed into your dev environment, you may want to use embark.io or waffle.io which allows you to configure/deploy ENS registry in your Ethereum test instance.
Otherwise, use ensjs.
This is how you include abi into your frontend code.
import {
ENS,
PublicResolver
} from '@ensdomains/ens-contracts'`
This is how you import our smartcontract within Solidity.
import '@ensdomains/ens-contracts/contracts/registry/ENS.sol';
Once you've chosen a library, read Working with ENS to learn how to use your chosen ENS library in your application.