1.2.2 • Published 5 years ago
reactez v1.2.2
reactez
A simple React CLI for Component and Page creation.
Getting Started
These instructions will get you a copy of the project up and running on your local machine.
Installation
npm i -g reactezUsage
With the new Version of reactez (v1.1.0) a Generate feature has been added. It's simple and easy.
Just type
rez generateor
rez gThis takes you to an easy-to-use prompt that helps you to generate Components,Pages and implement Axios into your project with ease.
Component generation
Functional Component
rez component [COMPONENTNAME]or
rez c [COMPONENTNAME]- This command creates a default Functional Component.
- The component is created at /src/components/.
- The generated component consists of a .jsx(component file) and a .css(style sheet) files.
- Generated component comes with a Functional Component boilerplate with the style sheet imported.
Class Component
rez component [COMPONENTNAME] -cor
rez c [COMPONENTNAME] -c- This command creates a Class Component.
- The component is created at /src/components/.
- The generated component consists of a .jsx(component file) and a .css(style sheet) files.
- Generated component comes with a Class Component boilerplate with the style sheet imported.
Alternate flag:
rez component [COMPONENTNAME] --classor
rez c [COMPONENTNAME] --classPage generation
Functional Component Page
rez page [PAGENAME]or
rez p [PAGENAME]- This command creates a default Functional Component Page.
- The component is created at /src/pages/.
- The generated page consists of a .jsx(component file) and a .css(style sheet) files.
- Generated page comes with a Functional Component boilerplate with the style sheet imported.
Class Component Page
rez page [PAGENAME] -cor
rez p [PAGENAME] -c- This command creates a Class Component Page.
- The component is created at /src/pages/.
- The generated page consists of a .jsx(component file) and a .css(style sheet) files.
- Generated page comes with a Class Component boilerplate with the style sheet imported.
Alternate flag:
rez component [PAGENAME] --classor
rez c [PAGENAME] --classAxios Implementation.
With the new update, it's easy to implement axios into your project.
Just type
rez axiosThis installs Axios and creates an axios.js file inside src/services
This feature is also available on the Generate mode.
Author
Chirag Chandrashekhar -My github