0.0.2 • Published 7 years ago

react-starter-kit-cli-cars v0.0.2

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

#rsk-cli

##Install Install via npm

npm install -g react-starter-kit-cli

##Quickstart

Quickly scaffolds out code for a front-end project/back-end project or both. By default the front-end boilerplate used is react-starter-kit and the back-end boilerplate is node-server-starter.

rsk-cli webapp helloworld --git --npm

// will result in this
.
└── helloworld
    ├── client
    │   ├── config
    │   ├── gulpfile.js
    │   ├── node_modules
    │   ├── package.json
    │   ├── readme.md
    │   ├── src
    │   ├── webpack.config.dev.js
    │   └── webpack.config.prod.js
    └── server
        ├── config.js
        ├── index.js
        ├── models
        ├── node_modules
        ├── package.json
        ├── readme.md
        ├── routes
        ├── scripts
        ├── server.js
        ├── services
        └── test

12 directories, 10 files

##Overview

Simple cli companion for react-starter-kit and node-server-starter.

Usage: rsk-cli <command>

commands:

client <name> [--git|npm]
  creates folder <name> and scaffolds client files,
  --git init empty git repo and first commit
  --npm runs npm install

comp <name>
  scaffold files in src/components/<name>
  note: only run this inside client dir

container <name>
  scaffold files in src/containers/<name>
  note: only run this inside container dir

server <name> [--git|npm]
  create folder <name> with scaffold node server
  --git init empty git repo and first commit
  --npm runs npm install

update
  update templates used to scaffold

webapp <name> [--git|npm]
  creates folder <name> and scaffolds client and server folders,
  --git init empty git repo and first commit
  --npm runs npm install