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

@poap-xyz/poaps

v0.7.2

Published

Poaps module for the poap.js library

Downloads

2,349

Readme

@poap-xyz/poaps

License: MIT

@poap-xyz/poaps is a JavaScript library providing an interface for interacting with POAPs , making it easy to fetch information about POAP tokens like their on-chain data, their related drop information and metadata.

Features

  • Fetch one or multiple POAP tokens at once.
  • Search over minted POAPs by their collector or the drop they belong to.
  • Mint POAPs synchronously or asynchronously mint processes.
  • Reserve a POAP to an email address.
  • Obtain mint status, POAP indexed status, and more.

Installation

This package doesn't require any additional dependencies for installation.

NPM

npm install @poap-xyz/poaps

Yarn

yarn add @poap-xyz/poaps

Usage

import { PoapsClient } from '@poap-xyz/poaps';
import {
  AuthenticationProviderHttp,
  PoapCompass,
  PoapTokenApi,
} from '@poap-xyz/providers';

// Create a new instance of PoapsClient
const client = new PoapsClient(
  new PoapCompass({
    apiKey: 'YOUR_COMPASS_API_KEY',
  }),
  new PoapTokenApi({
    apiKey: 'YOUR_POAP_TOKEN_API_KEY',
    authenticationProvider: new AuthenticationProviderHttp(
      'YOUR_CLIENT_ID',
      'YOUR_CLIENT_SECRET',
    ),
  }),
);

Documentation

Detailed documentation for each class, method, and type exported by this package can be found in the PoapsClient Documentation.

Examples

For example scripts and usage, please check the examples directory in the GitHub repository.

Contributing

We welcome contributions! Please see the CONTRIBUTING.md file for guidelines on how to get involved.

License

@poap-xyz/poaps is released under the MIT License.

Exports