Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/epoch/skeleton


https://github.com/epoch/skeleton

Last synced: about 1 month ago
JSON representation

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