https://github.com/epoch/skeleton
https://github.com/epoch/skeleton
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/epoch/skeleton
- Owner: epoch
- Created: 2016-02-28T05:53:14.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-27T06:01:48.000Z (about 10 years ago)
- Last Synced: 2025-03-30T19:22:12.401Z (about 1 year ago)
- Language: JavaScript
- Size: 181 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A basic react redux react-router babel skeleton with webpack.
- app layout
- home page
- about page
- users page
```
├── build
│ ├── bundle.js
│ └── index.html
├── dist
│ ├── bundle.js
│ └── index.html
├── package.json
├── src
│ ├── actions
│ │ └── index.js
│ ├── components
│ │ ├── about
│ │ │ └── index.js
│ │ ├── users
│ │ │ └── index.js
│ │ ├── home
│ │ │ ├── index.js
│ │ │ └── style.css
│ │ └── index.js
│ ├── containers
│ │ ├── app
│ │ │ └── index.js
│ │ └── index.js
│ ├── reducers
│ │ └── index.js
│ ├── index.html
│ ├── index.js
│ └── style.css
├── README.md
├── gulpfile.js
├── package.json
├── webpack.config.js
└── webpack.prod.config.js
```
- src - application code you edit during development
- build - during development, webpackDevServer bundle and run code in memory.
But we can also build to disk in this folder for browser to run instead.
- dist - optimized application code browser run for production