├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── circle.yml ├── dist └── favicon.ico ├── nodemon.json ├── package.json ├── platforms ├── browser │ ├── DevTools.js │ └── index.js ├── server │ ├── Html.jsx │ ├── api │ │ ├── index.js │ │ └── todos │ │ │ ├── index.js │ │ │ ├── redux.js │ │ │ └── routes │ │ │ ├── createTodo.js │ │ │ ├── deleteTodo.js │ │ │ ├── readTodo.js │ │ │ ├── readTodos.js │ │ │ └── updateTodo.js │ ├── index.js │ └── main.js └── shared │ ├── config.js │ ├── createClient.js │ ├── createStore.js │ └── reasync.js ├── src ├── App.css ├── App.jsx ├── Homepage │ └── Homepage.jsx ├── NotFound404 │ └── NotFound404.jsx ├── Repository │ ├── Author │ │ └── Author.jsx │ ├── BaseInfo │ │ └── BaseInfo.jsx │ ├── Contributors │ │ └── Contributors.jsx │ ├── Repository.jsx │ ├── redux.js │ └── routes.jsx ├── reducers.js └── routes.jsx └── webpack ├── build.js ├── dev.config.js ├── hot-server ├── index.js └── main.js ├── prod.config.js └── webpack-isomorphic-assets.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/circle.yml -------------------------------------------------------------------------------- /dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/dist/favicon.ico -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/package.json -------------------------------------------------------------------------------- /platforms/browser/DevTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/browser/DevTools.js -------------------------------------------------------------------------------- /platforms/browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/browser/index.js -------------------------------------------------------------------------------- /platforms/server/Html.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/server/Html.jsx -------------------------------------------------------------------------------- /platforms/server/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/server/api/index.js -------------------------------------------------------------------------------- /platforms/server/api/todos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/server/api/todos/index.js -------------------------------------------------------------------------------- /platforms/server/api/todos/redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/server/api/todos/redux.js -------------------------------------------------------------------------------- /platforms/server/api/todos/routes/createTodo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/server/api/todos/routes/createTodo.js -------------------------------------------------------------------------------- /platforms/server/api/todos/routes/deleteTodo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/server/api/todos/routes/deleteTodo.js -------------------------------------------------------------------------------- /platforms/server/api/todos/routes/readTodo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/server/api/todos/routes/readTodo.js -------------------------------------------------------------------------------- /platforms/server/api/todos/routes/readTodos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/server/api/todos/routes/readTodos.js -------------------------------------------------------------------------------- /platforms/server/api/todos/routes/updateTodo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/server/api/todos/routes/updateTodo.js -------------------------------------------------------------------------------- /platforms/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/server/index.js -------------------------------------------------------------------------------- /platforms/server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/server/main.js -------------------------------------------------------------------------------- /platforms/shared/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/shared/config.js -------------------------------------------------------------------------------- /platforms/shared/createClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/shared/createClient.js -------------------------------------------------------------------------------- /platforms/shared/createStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/shared/createStore.js -------------------------------------------------------------------------------- /platforms/shared/reasync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/platforms/shared/reasync.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/Homepage/Homepage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/src/Homepage/Homepage.jsx -------------------------------------------------------------------------------- /src/NotFound404/NotFound404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/src/NotFound404/NotFound404.jsx -------------------------------------------------------------------------------- /src/Repository/Author/Author.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/src/Repository/Author/Author.jsx -------------------------------------------------------------------------------- /src/Repository/BaseInfo/BaseInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/src/Repository/BaseInfo/BaseInfo.jsx -------------------------------------------------------------------------------- /src/Repository/Contributors/Contributors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/src/Repository/Contributors/Contributors.jsx -------------------------------------------------------------------------------- /src/Repository/Repository.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/src/Repository/Repository.jsx -------------------------------------------------------------------------------- /src/Repository/redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/src/Repository/redux.js -------------------------------------------------------------------------------- /src/Repository/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/src/Repository/routes.jsx -------------------------------------------------------------------------------- /src/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/src/reducers.js -------------------------------------------------------------------------------- /src/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/src/routes.jsx -------------------------------------------------------------------------------- /webpack/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/webpack/build.js -------------------------------------------------------------------------------- /webpack/dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/webpack/dev.config.js -------------------------------------------------------------------------------- /webpack/hot-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/webpack/hot-server/index.js -------------------------------------------------------------------------------- /webpack/hot-server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/webpack/hot-server/main.js -------------------------------------------------------------------------------- /webpack/prod.config.js: -------------------------------------------------------------------------------- 1 | // TODO 2 | -------------------------------------------------------------------------------- /webpack/webpack-isomorphic-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svrcekmichal/universal-react/HEAD/webpack/webpack-isomorphic-assets.js --------------------------------------------------------------------------------