HAKASHUN / react-manabi

manabi for react.
0 stars 0 forks source link

reduxの整理 #5

Open HAKASHUN opened 9 years ago

HAKASHUN commented 9 years ago
HAKASHUN commented 9 years ago

参考文献

HAKASHUN commented 9 years ago

index.js (エントリーポイント)

HAKASHUN commented 9 years ago

分けて考える

  1. エントリーポイントの作成と実行ができる
    • 開発方法の整理
    • webpackの設定を作る
    • できるだけboilerplateとしてまとめておく
  2. コンテナの作成をし、アプリの骨格を展開することができる
    • 大まかなレイアウトの決定
    • connectを用いて、親のコンポーネントにstateとdispatchの機能を持たせる簡易実装をする
  3. マークアップ
    • 実現したいUIを作る
    • htmlとcssで再現する
HAKASHUN commented 9 years ago

環境構築

項目

ディレクトリ構成

.
├── bin
│   └── server.js
├── package.json
├── src
│   ├── actions
│   ├── components
│   ├── constants
│   ├── containers
│   ├── reducers
│   ├── reducers
│   ├── stores
│   └── index.html
└── webpack.config.js
HAKASHUN commented 9 years ago

ファイル命名規則