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-reactgo-app

v2.0.1

Published

A cli to bootstarp a React + Go project

Readme

🚀 create-reactgo-app

A powerful CLI to bootstrap a fullstack React + Go application in seconds.

✨ Overview

create-reactgo-app helps you skip repetitive setup and instantly generate a production-ready project structure with: • ⚛️ React frontend • 🐹 Go backend • 📁 Clean project structure • ⚡ Ready-to-run setup

No more manual boilerplate — just one command and you’re ready to build.

📦 Installation

You don’t need to install anything globally.

Run directly using:

npx create-reactgo-app

⚡ Usage

Create a new project

npx create-reactgo-app my-app

Or use current directory

npx create-reactgo-app .

📁 Project Structure

my-app/
├── backend/        # Go server
├── frontend/       # React app
├── .gitignore
└── README.md

🧠 How It Works

  1. Prompts for a project name
  2. Creates a directory (or uses current one)
  3. Copies a prebuilt template
  4. Sets up your fullstack environment

🛠️ Features

  • ✅ Interactive CLI prompts
  • ✅ Smart directory handling (. support)
  • ✅ Fast and minimal setup
  • ✅ Cross-platform support

🚀 Getting Started

After creating your project:

cd my-app

Start backend

cd backend
go run main.go

Start frontend

cd frontend
npm install
npm run dev

🤝 Contributing

Contributions are welcome!

  1. Fork the repo
  2. Create a new branch
  3. Make your changes
  4. Submit a PR

📜 License

This project is licensed under the MIT License.

🤔 Why This Exists

Setting up a fullstack project with React + Go sounds simple… until you actually do it.

You start with an idea, open your terminal, and then:

  • Create separate folders for frontend and backend
  • Initialize React manually
  • Set up a Go server from scratch
  • Configure routing, ports, and structure
  • Add .gitignore, scripts, and basic boilerplate

By the time you’re done, you’ve spent 30–60 minutes… and written almost no actual product code.

⚠️ The Real Problem

The issue isn’t complexity — it’s repetition.

Every project starts the same way:

  • same folder structure
  • same setup steps
  • same boilerplate

Yet we keep doing it manually, over and over again.

💡 The Idea

create-reactgo-app was built to eliminate that friction.

Instead of wasting time on setup, you should be able to:

Run one command and start building immediately.

🚀 The Solution

This CLI automates the entire setup process:

  • Instantly scaffolds a fullstack project
  • Provides a clean, scalable structure
  • Removes repetitive boilerplate work
  • Lets you focus on what actually matters — building your idea

This is just the beginning.

The long-term goal is to evolve this into a developer-friendly toolkit that:

  • speeds up fullstack development
  • enforces good structure by default
  • helps developers ship faster with confidence

Built with ❤️ by Akdev