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 🙏

© 2024 – Pkg Stats / Ryan Hefner

avail-campaign-listing

v1.1.4

Published

teaproject

Downloads

101

Readme

Avail Clash of Nodes Listing

This is the official repo for the Karnot CLI and the Avail Clash of Nodes campaign. If you want your app chain to be listed and ranked for the campaign, please create a PR on this repo which adds a JSON in the following format to listing.json.

{
  "name": "my_app_chain",
  "logo": "https://placehold.co/400x400",
  "rpc_url": "https://rpc.myappchain.xyz",
  "explorer_url": "https://explorer.myappchain.xyz",
  "metrics_endpoint": "https://metrics.myappchain.xyz",
  "id": "942ff35e-f048-4d10-ae61-6cb970cad2f0"
}

Details

  1. name: The name of your app chain.
  2. logo: A image link for the logo of your app chain
  3. rpc_url: A public endpoint for your app chain to make RPC calls (port 9944 by default)
  4. explorer_url: A public endpoint where your app chain explorer is visible
  5. metrics_endpoint: A public endpoint for your prometheus metrics (port 9615 by default)

PR instructions

  1. Checkout from the main branch
  2. Create a UUID. You can use an online generator.
  3. Create a file with the name <uuid>.json inside the app_chains folder (uuid is the id generated in step 1).
  4. Enter all the details mentioned above inside the JSON file.
  5. Create a PR with the name "✨ Adding <app_chain_name>"
  6. Wait for all CI checks to pass
  7. If all your CI checks are passing, your branch should automatically merge.

Checkout this sample PR.

FAQs

How to fix prettier?

Install npx and run npx prettier@latest --write . on the repo root.

My validate-entry check keeps failing

Make sure all your entrypoints (rpc_url, explorer_url, metrics_endpoint) are up and working correctly.

My check-file-changes check keeps failing

Make sure that you're only adding one file in your PR. This should be a .json file in the above mentioned format and should be inside the app_chains folder.