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

create-nft-gallery

v0.1.1

Published

CLI tool to scaffold NFT gallery applications for Arweave Name System (ArNS) domains

Readme

Create NFT Gallery

A CLI tool to scaffold NFT gallery applications for Arweave Name System (ArNS) domains. This tool helps you quickly set up a gallery to showcase your NFT collection with support for different blockchain platforms.

TODOs

  • [ ] Add wayfinder + image component from original example
  • [ ] Add deployment scripts from original repo
  • [ ] Add support for ETH and Solana wallets for ArNS and permaweb-deploy

Installation

npm install -g create-nft-gallery

Usage

Create a new NFT gallery project:

create-nft-gallery [project-name] [options]

Options

  • --domain <ar-domain>: Specify your ArNS domain
  • --variant <variant>: Choose the variant to use (manifold or metaplex)

Interactive Mode

If you run the command without arguments, it will guide you through the setup process:

create-nft-gallery

You'll be prompted for:

  • Project name
  • Variant selection (manifold or metaplex)
  • ArNS domain
  • NFT contract address (optional)
  • RPC endpoint URL (optional)

Variants

Manifold

  • Supports Manifold Studio collections
  • Fetches metadata from Manifold's API
  • Best for Ethereum-based collections

Metaplex

  • Supports Solana NFT collections
  • Fetches metadata using Metaplex's Digital Asset Standard API
  • Best for Solana-based collections

Environment Variables

After creating your project, you'll need to set up your environment variables in the .env file:

ARNS_NAME=your_arns_domain
NFT_CONTRACT_ADDRESS=your_collection_address
RPC_ENDPOINT=your_rpc_endpoint
DEPLOY_KEY=your_arweave_wallet_key

NB - Solana RPC must support the Digital Asset Standard (DAS) API for metaplex variant, any ethereum RPC will will be fine for manifold

Available Scripts

Once your project is set up, you can use the following npm scripts:

  • npm run fetch-metadata: Fetch NFT metadata for your collection (required)
  • npm run create-undernames: Create and assign undernames for everyone NFT in the colleciton (optional, not tested yet)
  • npm run dev: Start the development server to see your gallery in the browser

// TODO production builders and arweave uploade

  • npm run build: Build the project for production
  • npm run preview: Preview the production build

Development

To work on the CLI tool itself:

# Clone the repository
git clone https://github.com/yourusername/create-nft-gallery.git
cd create-nft-gallery

# Install dependencies
npm install

# Run tests
npm test

# Generate a test project
npm run generate

# cd into project director
cd nft-gallery

# fetch NFT metadata
npm run fetch-metadata

# test local build
npm run dev

License

MIT