A TypeScript implementation of the Sherlock Domains API client.
npm install sherlock-domains
import { Sherlock } from 'sherlock-domains'
// Initialize the client
const sherlock = new Sherlock('your-access-token')
// Search for domains
const results = await sherlock.search('example.com')
console.log(results)
- Build the package
npm run build
. - Once it's error-free, commit changes to git
- Bump version:
npm run patch
- Publish the package:
npm publish
Alternatively, you can use the Makefile:
make publish