UNPKG

koot

Version:

Koot.js - React isomorphic framework created by CMUX

48 lines (44 loc) 1.15 kB
# 项目结构 ``` [app folder] ├── README.md ├── node_modules ├── dist ├── .eslintrc ├── .gitignore ├── babel.config.js ├── koot.js ├── koot.bulid.js ├── package.json ├── postcss.config.js ├── logs │ ├── dev │ ├── online │ └── webpack-config ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json └── src ├── app │ ├── api │ ├── redux │ │ ├── feature-1 │ │ │ ├── initial-state.js │ │ │ ├── actions.js │ │ │ └── reducer.js │ │ ├── action-types.js │ │ └── reducers.js │ ├── lifecycle │ ├── router │ └── ui │ ├── components │ ├── containers │ ├── pages │ ├── base │ └── root ├── server ├── locales ├── webpack └── html.ejs ```