Skip to content

Instantly share code, notes, and snippets.

@mobinni
Created February 1, 2016 22:29
Show Gist options
  • Save mobinni/b6b56426be7875454f3c to your computer and use it in GitHub Desktop.
Save mobinni/b6b56426be7875454f3c to your computer and use it in GitHub Desktop.
A Modern Isomorphic Stack with Redux - Part 2
.
├── ROADMAP.md
├── app
│   ├── images
│   ├── index.html
│   ├── lib
│   │   ├── index.js
│   │   ├── middleware
│   │   ├── modules
│   │   │   ├── feed
│   │   │   │   ├── actions.js
│   │   │   │   ├── constants.js
│   │   │   │   ├── index.js
│   │   │   │   └── reducers.js
│   │   │   └── moduleCollector.js
│   │   ├── store
│   │   │   └── storeBuilder.js
│   │   └── utils
│   │   └── devtools.js
│   ├── scripts
│   │   ├── app.js
│   │   ├── components
│   │   │   └── Main.jsx
│   │   ├── devtools.jsx
│   │   └── routes
│   │   ├── feed
│   │   │   ├── components
│   │   │   └── index.js
│   │   └── index.js
│   └── styles
│   ├── components
│   │   └── feed.scss
│   └── general
│   └── styles.scss
├── package.json
├── server
│   ├── engines
│   │   ├── index.js
│   │   ├── renderEngine.js
│   │   └── renderIndex.js
│   ├── index.js
│   ├── middleware
│   │   ├── index.js
│   │   ├── render.js
│   │   └── webpack.js
│   ├── server.js
│   └── utils
│   └── environment.js
└── webpack
└── webpack.dev.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment