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

getmepizza-dapp

v0.1.0

Published

Get Me Pizza is a social tipping full stack application built during the Moralis x Google Defining Defi Hackathon and Chainlink hackthon.

Readme

GET ME PIZZA

Get Me Pizza is a social tipping full stack application built during the Moralis x Google Defining Defi Hackathon and Chainlink hackthon.

https://getme.pizza

Core Features:

  • Creatos can create a profile, post blogs & withdraw tips.
  • Fans can tip creators in crypto & leave a memo. (The dapp takes 5% of each tip)
  • Fans receive a cross chain erc20 coupon for each $1 they tip.

getmepizza homepage screenshot

BUILT WITH

React

  • Form, Hooks, Drop Image, Hot-Toast, Markdown

Next.js

  • Frontend & OG Images API

Firebase

  • Database storage

Moralis

  • EVM API, IPFS Upload

Tailwindcss

  • CSS

Wagmi

  • Web3 Interactions

Rainbowkit

  • Wallet UI

Current Blockchains

  • Polygon, Binance Smart Chain, Fantom

Chainlink

  • Gets prices of native tokens and makes sure a slice costs $1 no matter what chain.

DiceBear

  • Default Profile Image Generator

LIVE FEATURES

PUBLIC:

  • Home page
  • About, FAQ, Privacy, Terms
  • Explore Page
  • Profile pages
  • Public/FEED posts
  • Tip creators with crypto
  • Like posts (if logged in)
  • Custom generated meta tag images for profile and blog pages via next13 OG Image Generator for social sharing.

ADMIN:

  • Create profile
  • Dashboard (withdraw & view tip balance)
  • Edit profile
  • Create posts
  • Edit posts

FUTURE FEATURES:

  • Messaging
  • Token gating posts
  • NFT Gallary
  • Memberships
  • Integrations

DEPLOYED CONTRACTS:

Contract can be found at /contract/getmepizza.sol. The contract takes in tips and assigns them to the creator to later withdraw from the users dashboard. It also issues a multichain token as a coupon to the tipper and stores the tip detail (to, from, memo, date, amount, slices) in a struct so we can display them on our front-end in the users profile page.

MAINNETS:

Polygon:

  • 0xAe634f8A025AAf53cc3AfCf29C4323085b40406F

Binance Smart Chain:

  • 0xAe634f8A025AAf53cc3AfCf29C4323085b40406F

Fantom Opera:

  • 0xAe634f8A025AAf53cc3AfCf29C4323085b40406F

HACKATHON NOTES:

The dapp is 100% functional and deployed on Mainnets.

  • Moralis functions have all been placed in /pages/libs/moralis.ts as exports/hooks.
  • Chainlink is used in the smart contracts found in /contract/getmepizza.sol and called in /pages/components/BuyPizza.tsx using wagmi.
  • Multichain has been implemented to make $🍕 points cross-chain found in /contract/getmepizza.sol

Moralis EVM API is used:

  1. To upload profile images to IPFS. (/pages/admin.tsx & /pages/enter.tsx)
  2. To get memo structs Array for creator from smart contract. (/pages/components/Supporters.tsx)
  3. To get withdrawable tip balance for creator from smart contract. (/pages/dashboard.tsx)

Wanna work on this front-end?

First create an .env.local file and add the following keys:

MORALIS_API_KEY='YOUR_MORALIS_API_KEY'
NEXT_PUBLIC_ALCHEMY_ID='YOUR_ACHEMY_ID'
NEXT_PUBLIC_POLY_CONTRACT='0xAe634f8A025AAf53cc3AfCf29C4323085b40406F'

, then install dependencies and run the development server:

npm install
npm run dev