create-react-web-app

1.1.7 • Public • Published

Create React Web App (CLI) NPM

React Logo

Introduction

Create React Web App is a command-line tool that simplifies the process of setting up a new React web application. With just a few commands, you can quickly initialize a new React project and start building your web application.

Features

  • Easy project initialization.
  • Opinionated project structure for rapid development.
  • Preconfigured webpack and Babel settings.
  • Integration with popular tools like ESLint and Prettier.
  • Ready-to-use development server with hot reloading.

Installation

To use Create React Web App, make sure you have Node.js and npm (Node Package Manager) installed on your system. You can install this CLI tool globally using npm:

npx create-react-web-app myapp

CLI Development Guide

Are you curious about how this CLI works behind the scenes? Would you like to develop your own custom React CLI effortlessly using NX, a powerful open-source build system? This guide will walk you through the process of creating, testing, and publishing your CLI library.

Let's dive in!🔥

Table of Contents

Create nx work space for developing CLI

npx create-nx-plugin@latest create-react-web-app-cli --create-package-name=create-react-web-app
npm install

Add Run Scripts to package.json

  "scripts": {
    "start-local-npm-registry": "npx nx local-registry",
    "local-publish": "npx nx run-many -t publish"
  },

Local Deployment

Before publishing your CLI, it's essential to test it locally. here we are going to use Verdaccio

  1. Start a local repository:
    npm run start-loacl-npm-registry
  2. Publish Your Package to Local Registry:
    npm run local-publish -- --ver 1.0.1 --tag latest
    This Command will also link your Package in your Local Machine

Test Your Package

npm create-web-app test

Now time to push on prod 🥳 (NPM Registry)

You must have NPM Account! if Not Go to the NPM site and create One!

Check the base Project Package.json name … it will be the name of your package

check the package name availability on the NPM

Now do the entry [ in package.json ] of

files ( which file to ship on registry)

"files": [
    "dist/**/*"
  ],

entry points

"bin": {
    "create-web-apps": "dist/packages/create-web-apps/bin/index.js"
  }

If Everything Done then Publish to NPM

⚠️ check npm config it should point to NPM Registry

npm config get registry
npm config set registry https://registry.npmjs.org/
npm login

will redirect to Browser for Login Guide ⚠️ And Now Remove private:true from your Package.json if any

npm publish --access=public

Cheers! 🍻 Its All Done ✅ ! Happy Coding 😊

Command you may need!

npm cache clean --force

Package Sidebar

Install

npm i create-react-web-app

Weekly Downloads

41

Version

1.1.7

License

MIT

Unpacked Size

17.6 kB

Total Files

21

Last publish

Collaborators

  • dhananjaysr26