0.1.0 • Published 5 years ago

react-parcel-cli v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

react parcel cli

Create React apps with no build configuration with parcel

Quick Overview

$ react-parcel-cli new
$ cd my-app
$ npm start
$ react-parcel-cli create my-app
$ cd my-app
$ npm start

Installation

$ npm install -g react-parcel-cli

Requirement

nodejs

Usage

new

  Usage: new

  Examples:

    $ react-parcel-cli new

create

  Usage: create <name> [options]

  Options:

    -t, --type [type]  "basic" or "redux" (default: basic)
    -p, --path [path]  path to be created. (default: ./)
    -h, --help         output usage information

  Examples:

    $ react-parcel-cli create my-app
    $ react-parcel-cli create my-app -p ./workspace -t redux