├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── client ├── app.js ├── config │ └── router.jsx ├── server-entry.js ├── template.html └── views │ ├── App.jsx │ ├── topic-detail │ └── index.jsx │ └── topic-list │ └── index.jsx ├── guide ├── _compile.源码.md ├── simple-ssr.md └── webpack自定义文件系统.md ├── package.json ├── readme.md ├── server ├── server.js └── util │ └── dev-static.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist 3 | .vscode/ 4 | package-lock.json -------------------------------------------------------------------------------- /client/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/client/app.js -------------------------------------------------------------------------------- /client/config/router.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/client/config/router.jsx -------------------------------------------------------------------------------- /client/server-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/client/server-entry.js -------------------------------------------------------------------------------- /client/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/client/template.html -------------------------------------------------------------------------------- /client/views/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/client/views/App.jsx -------------------------------------------------------------------------------- /client/views/topic-detail/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/client/views/topic-detail/index.jsx -------------------------------------------------------------------------------- /client/views/topic-list/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/client/views/topic-list/index.jsx -------------------------------------------------------------------------------- /guide/_compile.源码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/guide/_compile.源码.md -------------------------------------------------------------------------------- /guide/simple-ssr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/guide/simple-ssr.md -------------------------------------------------------------------------------- /guide/webpack自定义文件系统.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/guide/webpack自定义文件系统.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/readme.md -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/server/server.js -------------------------------------------------------------------------------- /server/util/dev-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/server/util/dev-static.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/react-ssr-kit/HEAD/yarn.lock --------------------------------------------------------------------------------