hyperzone v0.3.8
Hyperzone
Cryptographically verifiable and replicable DNSSEC-enabled zone storage
Usage
const zone = new Hyperzone('example.')
await zone.ready()
await zone.DS() // place this DS record in your parent zone
const rskey = await zone.put(`@ 3600 IN TXT "hello world"`) // add and sign a TXT record
await zone.resolve('example.', 'TXT') // resolve records in your authoritative resolver
await zone.del(rskey) // delete record setClient
To manage your hyperzone, install the hyperzone client CLI
npm i -g hyperzoneThen you can run
hyperzone example.comto create and manage a zone for example.com.
Server
If you'd like to resolve hyperzones locally, you can use the hipr-hyperzone middleware for hipr.
If you don't have hipr installed, you can install the CLI with
npm i -g hiprthen you can install the hipr-hyperzone middleware
hipr install hipr-hyperzoneand spin up a server
hipr hipr-hyperzone :53 :5349This starts a recursive server on port 53 capable of resolving hyperzones using a local hsd root nameserver running on port 5349. You may need to use sudo to listen on port 53.
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago