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

create-web3mobile

v1.0.64

Published

An opinionated starter kit for building web3 mobile React Native applications

Downloads

4,571

Readme

Table of contents

About

Web3Mobile is an opinionated framework for building mobile Web3 applications. It provides a carefully curated stack of modern tools and libraries, focusing on developer experience, typesafety, and Web3 integration.

This CLI helps you start new projects with our recommended stack without spending hours on setup and configuration.

Tech Stack

The core stack includes:

Getting Started

To create a new app, run one of the following commands:

npm

npm create web3mobile@latest

yarn

yarn create web3mobile

pnpm

pnpm create web3mobile@latest

Follow the CLI prompts to configure your project.

Current Features

Here are the features that are currently available and production-ready:

🔗 Web3 Integration

  • ✅ Wallet connection out of the box
  • ✅ Multiple chain support

📱 Mobile-First

  • ✅ Native UI components
  • ✅ Deep linking

🛠 Developer Experience

  • ✅ Type safety throughout
  • ✅ Hot reloading
  • ✅ Built-in debugging tools

🎨 Styling & UI

  • ✅ NativeWind for Tailwind CSS styling
  • ✅ Gluestack UI components
  • ✅ Dark mode support
  • ✅ Customizable themes

Upcoming Features

These features are currently in development and will be available in future releases:

🔗 Web3 Integration (In Development)

  • 🚧 Transaction management
  • 🚧 Contract interactions
  • 🚧 NFT support
  • 🚧 Enhanced wallet support
  • 🚧 Cross-chain bridging capabilities

📱 Mobile-First (Planned)

  • 🚧 Biometric authentication
  • 🚧 Push notifications
  • 🚧 QR code scanning
  • 🚧 Secure enclave integration
  • 🚧 Offline support

🛠 Developer Experience (In Progress)

  • 🚧 Automated testing setup
  • 🚧 CI/CD configuration
  • 🚧 Performance monitoring
  • 🚧 Error tracking
  • 🚧 Analytics integration

🆕 Additional Features (Planning Stage)

  • 🚧 DeFi protocol integrations
  • 🚧 Social features
  • 🚧 Token gating
  • 🚧 Fiat on/off ramps
  • 🚧 Layer 2 support

Configuration

Environment Variables

Configuration

  1. Copy the .env.example file to create your own .env:
cp .env.example .env
  1. Fill in the environment variables in your .env file with your own API keys:
  • INFURA_API_KEY: Get your key at https://infura.io
  • WALLETCONNECT_PROJECT_ID: Create a project at https://cloud.walletconnect.com
  • ALCHEMY_API_KEY: Get your key at https://alchemy.com

Each API key can be obtained by creating an account on the respective platforms. These keys are required for the app to interact with various blockchain services.

Network Configuration

// config/networks.ts export const networks = { mainnet: { // ... }, polygon: { // ... } }

Contributing

We love contributors! Please read our Contributing Guide before submitting any Pull Requests.

Development

  1. Fork the repository
  2. Create your feature branch: git checkout -b feature/AmazingFeature
  3. Commit your changes: git commit -m 'Add some AmazingFeature'
  4. Push to the branch: git push origin feature/AmazingFeature
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.