npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

netx-name-resolver

v0.1.3

Published

Resolve .netx names and NetX primary names on NetX Testnet.

Readme

NetX Name Resolver

MetaMask Name Lookup integration for NetX Name Service on NetX Testnet.

Network

  • Chain: NetX Testnet (eip155:587)
  • Name suffix: .netx
  • Name service: 0x962067a3c0b3ACC733c6396823C239c8E9fa3b82

What it resolves

  • Forward: name.netx -> the address returned by resolve(string).
  • Reverse: an address -> the live primary name returned by primaryName(address).

The Snap requests network access to read the fixed NetX Testnet RPC endpoint, plus MetaMask's name lookup permission. It does not request account keys, signatures, transaction permissions, or wallet state.

Build and test

npm install --ignore-scripts --workspaces=false
npm run build --workspaces=false
npm test --workspaces=false -- --runInBand

Local MetaMask test

Custom name lookup is a protected MetaMask Snap permission. During development, use MetaMask Flask.

  1. Install MetaMask Flask in a separate browser profile.
  2. Build the Snap, then run npm run serve --workspaces=false in this directory.
  3. From a development dapp, request the local Snap:
await window.ethereum.request({
  method: 'wallet_requestSnaps',
  params: {
    'local:http://localhost:8080': {},
  },
});
  1. Switch MetaMask to NetX Testnet (chain ID 587).
  2. In Send, enter a registered name such as netx.netx. MetaMask should offer the address returned by the NetX Name Service contract.

Public distribution

The public source repository is https://github.com/VibeYolk/netx-name-resolver. Publish the package to npm, then submit the Snap for MetaMask allowlisting. Stable MetaMask cannot install this name-lookup Snap until that protected permission has been approved.