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

ultimate-scaffold-dapp

v0.0.8

Published

ultimate custom evm blockchain application scaffold starter dapp

Readme

Ultimate EVM Scaffold

Version 0.0.5

Overview


🧪 Ultimate EVM Scaffold is an open-source, robust framework designed to accelerate the development and deployment of decentralized applications (DApps) on any EVM platform. It equips developers with essential tools and frameworks, making the initial steps of building a DApp straightforward and efficient.


Getting Started

Prerequisites

Before you begin, make sure you have the following installed:

Installation

You can quickly set up a new project using the command below:

npx ultimate-scaffold-dapp@latest create

Or, for pnpm users:

pnpm dlx ultimate-scaffold-dapp@latest create

Or, with yarn:

yarn dlx ultimate-scaffold-dapp@latest create

Key Components

The scaffold supports the following frameworks:

  • Frontend Framework:
  • Next.js
    • Wagmi (for wallet connection)
    • Viem (for blockchain interactions)
    • RainbowKit (for wallet UI)
    • Typescript (default)
  • Backend Framework:
  • Hardhat
    • Javascript (default) or TypeScript

Usage

Follow these steps to create and configure your DApp project:

  1. Run the CLI Tool: Use the create command to scaffold a project:
npx ultimate-scaffold-dapp@latest create
  1. Select Front-End and Smart Contract Frameworks: During the setup, you'll choose from available frameworks:

    • Frontend: Next.js (with TypeScript)
    • Smart Contracts: Hardhat (JavaScript/TypeScript)
  2. Project Configuration: Provide a namefor your project, which will be used to set up the directory structure.

  3. Install Dependencies: Navigate to the project directory and install dependencies using your preferred package manager:

pnpm install
yarn install
npm install
  1. Start the Project: Run the following command to start the development server:
pnpm install
yarn install
npm install
  • Compile and deploy the smart contracts:
pnpm hardhat copile
pnpm hardhat run scripts/deploy.js

Advanced Configuration

Generated projects include a package.json file tailored for your project. You can modify the following as needed:

  • Add more scripts for testing, building, or deploying.
  • Customize configuration files like hardhat.config.js or tsconfig.json.

CLI Commands

The CLI offers the following commands:

npx ultimate-scaffold-dapp create
npx ultimate-scaffold-dapp deploy
npx ultimate-scaffold-dapp --help

Sample scripts for Your Project

Here’s an example of scripts that will be included in your package.json:

"scripts": {
  "frontend:dev": "yarn workspace @ultimate-scaffold/next-ts dev",
  "frontend:build": "yarn workspace @ultimate-scaffold/next-ts build",
  "frontend:start": "yarn workspace @ultimate-scaffold/next-ts start",
  "hardhat:compile": "yarn workspace @ultimate-scaffold/hardhat-ts compile",
  "hardhat:test": "yarn workspace @ultimate-scaffold/hardhat-ts test",
  "hardhat:deploy": "yarn workspace @ultimate-scaffold/hardhat-ts run scripts/deploy.js"
}

Support and Contribution

For issues, suggestions, or contributions, please visit our GitHub repository.

👉 GitHub Repository

Additional Notes

  • If your project setup does not involve web development, modifications like netlify.toml might be unnecessary.
  • Projects such as those developed with Flutter might not utilize a package.json.

Maintainers

  • @Jordan-type
  • @Ronexlemon
  • @anthonykimani

License

This project is licensed under the MIT License.

Using the CLI

  • additionally you can scaffold a project easily by using the command npx ultimate-scaffold-dapp@latest create npx ultimate-scaffold-dapp

Happy Coding! 🎉


Key Updates

  1. Replaced lisk references with ultimate to align with the scaffold's branding.
  2. Updated CLI commands and sample package.json scripts.
  3. Added support for multiple package managers (pnpm, yarn, npm).
  4. Streamlined the sections for improved readability and usability.

Let me know if you'd like further modifications! 🚀