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

@mintgate/react-mintgate

v0.2.0

Published

This is a widget library for React for creating and viewing token protected content.

Downloads

51

Readme

@mintgate/react-mintgate

This is a widget library for React for creating and viewing token protected content.

Install:

yarn add @mintgate/react-mintgate

How to Get Your Widget Token:

  1. Log into the MintGate Site: https://www.mintgate.app/login
  2. Go to https://www.mintgate.app/token_api or https://www.mintgate.app/developer and click on the Get Token Keys button.
  3. You will need to copy your Widget Token and pass the value as a key to the jwttoken parameter (for Token gating form and List/Grid of token gated links by token).
  4. You will also need your userID (for List/Grid of token gated links by user only).

Widget currently available:

  1. Token gating form (form to set up a token gate on a link)
  2. List/Grid of token gated links on MintGate platform by token
  3. List/Grid of token gated links on MintGate platform by user
  4. Token Profile

In React project:

Form to set up token gated links:

Required prop:

  • jwttoken (string - your jwt token)

Optional prop:

  • theme (string - one of our 16 themes)
import '@mintgate/react-mintgate/dist/lib.css'
import { TPPFormWidget} from '@mintgate/react-mintgate';

function App() {
  return (
    <div className="App">
      <TPPFormWidget jwttoken="yourjwttoken" theme='oneofourthemes'/>
    </div>
  );
}

export default App;

List of Token Gated Links by Token:

Required prop:

  • tokentid (string - token address)

Optional prop:

  • theme (string - one of our 16 themes)
import '@mintgate/react-mintgate/dist/lib.css'
import { TPPLinkList} from '@mintgate/react-mintgate';

function App() {
  return (
    <div className="App">
      <TPPLinkList tokentid='yourtokenaddress' theme='oneofourthemes'/>
    </div>
  );
}

export default App;

Grid of Token Gated Links by Token:

Required prop:

  • tokentid (string - token address)

Optional prop:

  • theme (string - one of our 16 themes)
  • breakpoints for number of columns
  • base = default
  • lg = 1200px
  • md = 800px
  • sm = 600px
  • xs = 500px
import '@mintgate/react-mintgate/dist/lib.css'
import { TPPLinkGrid} from '@mintgate/react-mintgate';

function App() {
  return (
    <div className="App">
      <TPPLinkGrid base="4" lg="3" md="2" sm="1" xs="1" tokentid='yourtokenaddress' theme='oneofourthemes'/>
    </div>
  );
}

export default App;

List of Token Gated Links by User:

Required prop:

  • userid (number - id of user)
  • jwttoken (string - your jwt token)

Optional prop:

  • theme (string - one of our 16 themes)
import '@mintgate/react-mintgate/dist/lib.css'
import { TPPLinkListUsers} from '@mintgate/react-mintgate';

function App() {
  return (
    <div className="App">
      <TPPLinkListUsers 
      userid='youruserid'
      jwttoken='yourjwttoken' theme='oneofourthemes'/>
    </div>
  );
}

export default App;

Grid of Token Gated Links by User:

Required prop:

  • userid (number - id of user)
  • jwttoken (string - your jwt token)

Optional prop:

  • theme (string - one of our 16 themes)
  • breakpoints for number of columns
  • base = default
  • lg = 1200px
  • md = 800px
  • sm = 600px
  • xs = 500px
import '@mintgate/react-mintgate/dist/lib.css'
import { TPPLinkGridUsers} from '@mintgate/react-mintgate';

function App() {
  return (
    <div className="App">
      <TPPLinkGridUsers 
      userid='youruserid'
      base="4" lg="3" md="2" sm="1" xs="1"
      jwttoken='yourjwttoken'
      theme='oneofourthemes'/>
    </div>
  );
}

export default App;

Token Profile:

Required prop: tokenName (string - name of token)

Optional prop: body (true/false boolean - true show the profile info, false hides the profile info and only shows photo)

import '@mintgate/react-mintgate/dist/lib.css'
import { TokenProfile} from '@mintgate/react-mintgate';

function App() {
  return (
    <div className="App">
      <TokenProfile
      tokenName="yourtokentid" body={true/false} />
    </div>
  );
}

export default App;

Optional - You can add any of the following style themes as a value to the theme parameter:

  • aqua
  • black
  • bumblebee
  • cupcake
  • cyberpunk
  • dark
  • dracula
  • fantasy
  • forest
  • garden
  • halloween
  • light (default)
  • luxury
  • pastel
  • retro
  • synthwave
  • valentine

Example project in the repo: /examples/helloworld


Internal: to build a new NPM version

yarn build
yarn publish