https://github.com/badsyntax/generator-react-seed
React seed Yeoman generator
https://github.com/badsyntax/generator-react-seed
Last synced: 11 months ago
JSON representation
React seed Yeoman generator
- Host: GitHub
- URL: https://github.com/badsyntax/generator-react-seed
- Owner: badsyntax
- License: mit
- Created: 2015-05-03T00:41:39.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-09T11:26:35.000Z (almost 11 years ago)
- Last Synced: 2025-03-17T14:22:06.099Z (11 months ago)
- Language: JavaScript
- Size: 180 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# generator-react-seed [](https://travis-ci.org/badsyntax/generator-react-seed)
> Seed project for React apps using ES6 & webpack
This yeoman generator will install base projet files from my [react-seed](https://github.com/badsyntax/react-seed) project. You have the option of installing the following features:
* react-router
* material-ui
## Getting Started
Ensure yeoman is installed:
```bash
npm install -g yo
```
Install generator-react-seed from npm:
```bash
npm install -g generator-react-seed
```
Finally, initiate the generator:
```bash
yo react-seed
```
## Files
```
├── CHANGELOG.md
├── LICENSE
├── README.md
├── app
│ ├── actions
│ │ └── AppActions.js
│ ├── app.jsx
│ ├── components
│ │ ├── App
│ │ │ ├── App.jsx
│ │ │ └── _App.scss
│ │ ├── Body
│ │ │ ├── Body.jsx
│ │ │ └── _Body.scss
│ │ └── Footer
│ │ ├── Footer.jsx
│ │ ├── _Footer.scss
│ │ └── __tests__
│ │ └── Footer-test.js
│ ├── constants
│ │ └── AppConstants.js
│ ├── dispatcher
│ │ └── AppDispatcher.js
│ ├── favicon.ico
│ ├── index.html
│ ├── scss
│ │ ├── _base.scss
│ │ ├── _functions.scss
│ │ ├── _mixins.scss
│ │ ├── _toolkit.scss
│ │ └── app.scss
│ ├── stores
│ │ ├── BaseStore.js
│ │ ├── ItemsStore.js
│ │ └── __tests__
│ │ └── BaseStore-test.js
│ └── util
│ └── WebAPI.js
├── dev-server.js
├── jest-preprocessor.js
├── package.json
└── webpack.config.js
```
## License
Copyright (c) 2015 Richard Willis
MIT (http://opensource.org/licenses/MIT)