Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrieljmj/r7su
Creates a boilerplate for my personal React projects
https://github.com/gabrieljmj/r7su
boilerplate react react-redux setup webpack
Last synced: about 2 months ago
JSON representation
Creates a boilerplate for my personal React projects
- Host: GitHub
- URL: https://github.com/gabrieljmj/r7su
- Owner: gabrieljmj
- Created: 2017-04-16T18:44:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-19T23:36:27.000Z (over 7 years ago)
- Last Synced: 2024-08-08T15:39:12.190Z (5 months ago)
- Topics: boilerplate, react, react-redux, setup, webpack
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
r7su
====
## Installation```bash
$ npm install -g r7su
```## Usage
```bash
$ mkdir project
$ cd project
$ r7su
```## Files and directories structure
```
├──app/
│ ├──actions/
│ ├──components/
│ │ ├──containers/
│ │ ├──views/
│ ├──reducers/
│ ├──app.js
├──public/
│ ├──css/
│ ├──js/
│ ├──images/
├──.editorconfig
├──.gitignore
├──index.html
├──package.json
├──webpack.config.js
```## Installed packages
> [**yarn**](https://yarnpkg.com) is required to install packages.
### Dev
* [```webpack```](https://npmjs.com/package/webpack)
* [```babel-core```](https://npmjs.com/package/babel-core)
* [```babel-loader```](https://npmjs.com/package/babel-loader)
* [```babel-preset-es2015```](https://npmjs.com/package/babel-preset-es2015)
* [```babel-preset-react```](https://npmjs.com/package/babel-preset-react)
* [```style-loader```](https://npmjs.com/package/style-loader)
* [```css-loader```](https://npmjs.com/package/css-loader)
* [```extract-text-webpack-plugin```](https://npmjs.com/package/extract-text-webpack-plugin)### Prod
* [```react```](https://npmjs.com/package/react)
* [```react-dom```](https://npmjs.com/package/react-dom)
* [```react-route```](https://npmjs.com/package/react-route)
* [```redux```](https://npmjs.com/package/redux)
* [```react-redux```](https://npmjs.com/package/react-redux)