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 ๐Ÿ™

ยฉ 2025 โ€“ย Pkg Stats / Ryan Hefner

create-celo-dapp

v1.2.10

Published

Your next Ethereum application starts here. โš›๏ธ ๐Ÿ’ช ๐Ÿฆ„

Readme

create-react-dapp

https://img.shields.io/badge/strictly-typescript-blue https://img.shields.io/badge/platforms-android%2Cios%2Cweb-brightgreen https://img.shields.io/badge/powered--by-hardhat-orange https://img.shields.io/badge/chat-on%20discord-red

create-react-dapp is an npx utility to help quickly bootstrap React Native โš›๏ธ applications with access to the Ethereum Blockchain.

Our goal is to help create a sustainable open source ecosystem for Web3 in React Native by providing a dependable common runtime which we can buidl upon and extend together.

๐Ÿ”ฅ Features

  • ๐Ÿš€ Bootstrapped by Expo.
    • Easily take advantage of Expo's high quality, well-supported and well-documented library architecture.
    • Supports Android, iOS and the Web.
  • ๐Ÿ‘ท Served with Hardhat.
    • Your generated app comes with a simple example contract which you can deploy, test and interact with directly.
  • ๐Ÿ‘› Powered by WalletConnect.
  • ๐Ÿ—๏ธ It's typed, and pretty.
    • It comes pre-configured with TypeScript to help write applications that scale.
    • It's integrated with prettier and husky to ensure coding standards are enforced right from the beginning.
  • ๐Ÿ˜‰ And it's ready to go.
    • Built applications come pre-packaged with .env support using react-native-dotenv and companion tests for your contracts.
    • Projects are initialized using deep linking so external navigation is a breeze.

To get started,

First, please make sure you've logged into expo-cli.

npx create-react-dapp

This will walk you through the creation of your Ethereum-enabled application, which works on Android, iOS and the Web.

To start the app, you can:

cd my-react-dapp
yarn ios # android, web

To programmatically invoke,

create-react-dapp also exports a simple interface for the programmatic allocation of new projects.

import { create } from 'create-react-dapp';

(async () => {
  const name = 'my-react-dapp';
  const bundleIdentifier = 'io.github.cawfree.dapp';
  const uriScheme = 'myapp'; // navigate using myapp://some/path
  const { dir } = await create({
    name,
    bundleIdentifer,
    packageName: bundleIdentifier,
    uriScheme,
  });
})();

โœŒ๏ธ License

MIT