99x / react-scaffolder

:zap: Scaffolding tool for React
MIT License
44 stars 14 forks source link
cli hacktoberfest javascript nodejs react react-components scaffold scaffolding

logo

react-scaffolder Dependency status Build Status

Join the chat at https://gitter.im/react-scaffolder/Lobby

Scaffolding tool for React

react-scaffolder is a command line interface which brings smooth developer experience (DX) for React devs. react-scaffolder provides a better way to generate react projects with react-boilerplate. With this tool it's possible to continue generating boilerplate code with heavy customizations once a project is initiated.

Install

$ npm install -g react-scaffolder

or if you're using yarn,

$ yarn global add react-scaffolder

Quick Start

Quickest way to get up and running with react-scaffolder

Usage

react init [name] [git repository URL]

alias: i

name

Project name.

Git repository URL (optional)

Git repository URL that you need to use as the template.

Options


react generate component [module] [component]

alias: g

module

Module name where the react component should be placed within. (Subdirectory within components directory)

component

React component name. If you leave that empty generator creates folder with module name, and index.js inside

Options

Define propNames

At "Prop names" question you can use "" to mark as required `titleand also you can define typetitle:stringand sure you can writetitle:string*` If you didn't define a type cli will ask you to choose it from the list.


react generate test [module] [component]

alias: g

Create React component.

module

Module name where the test file should be placed within. (Subdirectory within tests directory)

component

Test file name.


react view -c -t

alias: v

View react components and test files.

Options

react config [key] [value]

alias: c

Change configuration in .reactclirc.

key

Key for configuration example: client

value

Value for configuration example: src (source directory)


Configuring existing projects

To use react-cli in existing React project navigate to directory where React components are created. Create react-cli configuration file, .reactclirc (similar to .babelrc). Add configuration in key value pairs.

{
    "client": "src"
}

This specifies that React components are placed in src/components directory.


Features

Future work

References

Contributor guidelines

For more information refer CONTRIBUTING.md

License

MIT © 99XT