Skip to content

Instantly share code, notes, and snippets.

@mobinni
Last active December 17, 2015 23:57
Show Gist options
  • Save mobinni/a63bd093e42ffafeda18 to your computer and use it in GitHub Desktop.
Save mobinni/a63bd093e42ffafeda18 to your computer and use it in GitHub Desktop.
A Modern Isomorphic Stack with Redux - Part 1
.
├── app
│   ├── images
│   ├── index.html
│   ├── scripts
│   │   ├── app.js
│   │   ├── components
│   │   │   └── Main.jsx
│   │   ├── devtools.js
│   │   └── routes
│   │   ├── feed
│   │   │   ├── components
│   │   │   └── index.js
│   │   └── index.js
│   └── styles
│   ├── components
│   │   └── feed.scss
│   └── general
│   └── styles.scss
├── package.json
├── server
│   ├── engines
│   │   ├── index.js
│   │   └── renderEngine.js
│   ├── middleware
│   │   ├── index.js
│   │   ├── routing.js
│   │   └── webpack.js
│   ├── server.js
│   └── utils
│   ├── environment.js
│   └── index.js
└── webpack
└── webpack.dev.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment