Hygen template package to ease your React and Redux workflow.
$ hygen-add react
This will create a _template
folder in your project root. This contains all the template files. You should commit and push them with your code. You can also modify the template for your need.
hygen-react
supports both prompt and non-prompt version of hygen
generator. Choose whichever fits you.
hygen react-prompt new
hygen react new <flags>
Options:
--name <name> Name of the component
--section <location> Name of the sub-folder. Valid paths can be passed.
--type [stateful|functional] Type of React component to be created. Defaults to 'pureComponent'
--redux Add boilerplate for react-redux
--lazy Make the generated component lazy (Async component)
--styles [css|scss|sass|less|styl] Add stylesheet to the generated component. Defaults to 'none'
Examples:
hygen react new --name header --section components --redux --styles scss
hygen react new --name footer --section components --lazy --styles scss
hygen react new --name home --section pages --type stateful --redux --styles scss
hygen-react
will create the following files
app/<section>/<component_name>/component.jsx
- Code related to component goes in hereapp/<section>/<component_name>/index.jsx
- Code related to react-loadable goes in hereapp/<section>/<component_name>/styles.[ext]
- Stylesheet (based on the stylesheet preference)app/<section>/<component_name>/README.md
- README file for documentationapp/<section>/<component_name>/__tests__/index.js
- Code related to unit test goes in hereapp/<section>/index.js
- Index file which exports all components from a section. It will get updated automatically when a new component is added. Useful when combined with webpack alias. You can do something likeimport { Header, Footer, Profile } from '@components'
- Whitespaces in
section
andcomponent_name
will bedasherized
for file/folder names andcamelized
for class/variable names. - The generated code uses
class properties
,decorators
anddynamic import
. So, you should include babel-proposal-class-properties, babel-plugin-proposal-decorators and babel-plugin-syntax-dynamic-import in your project - The generated code uses react-loadable to dynamically import components (only when
--lazy
is passed)
MIT