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

iam-react

v1.0.24

Published

![Cover Image](https://pbs.twimg.com/profile_banners/1626244560585388032/1677599782/1500x500)

Downloads

8

Readme

WIAM SDK

Cover Image

WIAM helps Solana dApps to take data driven decisions by providing state of the class analytics services. This is a JS SDK with inbuilt TS types that helps Solana dApps to track activity on their dApp more easily.

What metrics does WIAM capture?

  • Connected wallet addresses
    • Transaction executed
  • Transactions
    • Volume
    • Status
  • Retention rate
  • Bounce rate
  • Page views
    • referrer
  • Heatmaps (Coming soon)

All of these metrics are available in our best-in-class intuitive dashboard.

We also let you to export all of the connected addresses as a .csv which you can use then to airdrop rewards, also building a feature where you can do that inside our dashboard itself.

Installation

yarn add wiam

Usage

You just have to send the connected wallet address to our SDK and rest of the tracking is handled by us.

You have to publically serve service-worker.js, if using react or next, upload this to public folder and send file's name in the options, FYI the file should be publically available at https://domain.com/service-worker.js

import WIAM from "wiam"

const wiam = new WIAM("API_KEY", {
    serviceWorker: "service-worker.js"
})

const App = () => {
    const { publicKey } = useWallet()

    useEffect(() => {
        if(publicKey) {
            wiam.setWallet(publicKey.toString())
        }
    }, [publicKey])
}

export default App

Open Source

Project is fully opensource from frontend to backend to SDK

Frontend Backend