A slush generator for create a React component in isolation
The idea of creating this generator components was based on the design structure them in isolation. Where we believe the web should be built this way. It is customized based on some current needs and preferences of Personare but you can easily change.
Feel free to suggest improvements =]
To define the structure we use an internal process called DSS (Design Structure Sprint) that through a short sprint it allows us to stay focused and aligned with the solution.
React Storybook - to tell stories with different behaviors of the component and provide an example page.
- EditorConfig - standardize some general settings among multiple editors
- ESLint - for reporting the patterns of code
- Plugins
- Jest - test framework
- babel
- Plugins
├── .babelrc
├── .editorconfig
├── .eslintrc.json
├── .github
│ ├── ISSUE_TEMPLATE.md
│ └── PULL_REQUEST_TEMPLATE.md
├── .gitignore
├── .scrutinizer.yml | .travis.yml | circle.yml
├── .storybook
│ ├── config.js
│ ├── webpack.config.js
│ └── webpack.dist.config.js
├── README.md
├── contributing.md
├── package.json
├── src
│ ├── MyFirstComponent.css
│ ├── MyFirstComponent.js
│ └── MyFirstComponent.story.js
└── tests
├── MyFirstComponent.test.js
└── mock-browser.js
- Requirements
After install the requirements, run the following command:
[sudo] npm i -g @personare/slush-react-component-generator
Create a new folder for your project:
mkdir my-first-component && cd my-first-component
Run the generator:
slush react-component-generator
This generator was made with love by contributors.