├── .babelrc ├── .browserslistrc ├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ └── App.test.js ├── nodemon.json ├── package.json ├── postcss.config.js ├── scripts ├── extended-node-externals.js └── node-externals.js ├── src ├── client │ └── index.js ├── index.js ├── server │ ├── document.js │ └── index.js └── shared │ ├── App.js │ ├── app.styl │ └── components │ ├── UniversalComponent.js │ └── getting-started │ ├── index.js │ └── index.styl └── webpack ├── client ├── common.js ├── dev.js └── prod.js ├── common.js ├── node.js └── server ├── common.js ├── dev.js └── prod.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/.babelrc -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- 1 | last 2 version 2 | IE 11 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/__tests__/App.test.js -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/postcss.config.js -------------------------------------------------------------------------------- /scripts/extended-node-externals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/scripts/extended-node-externals.js -------------------------------------------------------------------------------- /scripts/node-externals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/scripts/node-externals.js -------------------------------------------------------------------------------- /src/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/src/client/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/src/index.js -------------------------------------------------------------------------------- /src/server/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/src/server/document.js -------------------------------------------------------------------------------- /src/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/src/server/index.js -------------------------------------------------------------------------------- /src/shared/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/src/shared/App.js -------------------------------------------------------------------------------- /src/shared/app.styl: -------------------------------------------------------------------------------- 1 | body 2 | font-family sans-serif 3 | -------------------------------------------------------------------------------- /src/shared/components/UniversalComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/src/shared/components/UniversalComponent.js -------------------------------------------------------------------------------- /src/shared/components/getting-started/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/src/shared/components/getting-started/index.js -------------------------------------------------------------------------------- /src/shared/components/getting-started/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/src/shared/components/getting-started/index.styl -------------------------------------------------------------------------------- /webpack/client/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/webpack/client/common.js -------------------------------------------------------------------------------- /webpack/client/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/webpack/client/dev.js -------------------------------------------------------------------------------- /webpack/client/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/webpack/client/prod.js -------------------------------------------------------------------------------- /webpack/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/webpack/common.js -------------------------------------------------------------------------------- /webpack/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/webpack/node.js -------------------------------------------------------------------------------- /webpack/server/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/webpack/server/common.js -------------------------------------------------------------------------------- /webpack/server/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/webpack/server/dev.js -------------------------------------------------------------------------------- /webpack/server/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rherwig/template-react-ssr/HEAD/webpack/server/prod.js --------------------------------------------------------------------------------