Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/epoch/skeleton
https://github.com/epoch/skeleton
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/epoch/skeleton
- Owner: epoch
- Created: 2016-02-28T05:53:14.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-27T06:01:48.000Z (almost 9 years ago)
- Last Synced: 2024-10-25T01:38:51.894Z (3 months ago)
- Language: JavaScript
- Size: 181 KB
- Stars: 0
- Watchers: 2
- 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