├── .gitattributes ├── 9781484258682.jpg ├── Ch_01 ├── 1. Starter Project │ ├── desktop.ini │ └── intro-to-js │ │ ├── css │ │ ├── desktop.ini │ │ └── style.css │ │ ├── desktop.ini │ │ ├── index.html │ │ ├── package.json │ │ └── scripts │ │ ├── desktop.ini │ │ └── index.js └── desktop.ini ├── Ch_02 ├── 2. AJAX data request to GitHub API using axios │ ├── Readme.txt │ ├── desktop.ini │ └── my-app │ │ ├── desktop.ini │ │ ├── package.json │ │ ├── public │ │ ├── desktop.ini │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── Hooks │ │ ├── desktop.ini │ │ └── useChangeAlert.js │ │ ├── MyComponent.js │ │ ├── MyComponent2.js │ │ ├── desktop.ini │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ └── serviceWorker.js └── desktop.ini ├── Ch_03 ├── 3. Starter Next.js Application with Multimedia │ ├── Readme.txt │ ├── desktop.ini │ └── my-next-app │ │ ├── SharedComponents │ │ ├── DynamicRouter.js │ │ └── desktop.ini │ │ ├── desktop.ini │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── SecondPage.js │ │ ├── desktop.ini │ │ └── index.js │ │ ├── static │ │ ├── Images │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ └── desktop.ini │ │ └── desktop.ini │ │ └── style.css ├── 4. Interactive Next.js Application for Searching Github Users │ ├── Readme.txt │ ├── desktop.ini │ └── my-next-app │ │ ├── SharedComponents │ │ ├── DynamicRouter.js │ │ └── desktop.ini │ │ ├── desktop.ini │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── GithubUsers.js │ │ ├── SecondPage.js │ │ ├── desktop.ini │ │ └── index.js │ │ ├── static │ │ ├── Images │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ └── desktop.ini │ │ └── desktop.ini │ │ └── style.css ├── 5. Redux for State Management in a Next.js Application │ ├── Readme.txt │ ├── desktop.ini │ └── my-next-app │ │ ├── Actions │ │ ├── actions.js │ │ └── desktop.ini │ │ ├── Reducers │ │ ├── desktop.ini │ │ └── reducer.js │ │ ├── Store │ │ ├── desktop.ini │ │ └── store.js │ │ ├── desktop.ini │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── _app.js │ │ ├── desktop.ini │ │ └── index.js │ │ └── style.css ├── 6. Working with GraphQL │ ├── Readme.txt │ ├── desktop.ini │ └── my-next-app │ │ ├── desktop.ini │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── api │ │ │ ├── TestAPI.js │ │ │ └── desktop.ini │ │ ├── desktop.ini │ │ └── index.js │ │ └── style.css └── desktop.ini ├── Ch_04 ├── 7. Digital Clock using React, Next.js and Bootstrap │ ├── Readme.txt │ ├── desktop.ini │ └── my-app │ │ ├── Pages │ │ ├── desktop.ini │ │ └── index.js │ │ ├── README.md │ │ ├── Resources │ │ ├── desktop.ini │ │ └── style.css │ │ ├── desktop.ini │ │ ├── next.config.js │ │ └── package.json └── desktop.ini ├── Ch_05 ├── 8. JavaScript Testing using Jest │ ├── Readme.txt │ ├── desktop.ini │ └── jest-testing-app │ │ ├── desktop.ini │ │ ├── functions.js │ │ ├── package.json │ │ └── tests │ │ ├── desktop.ini │ │ └── functions.test.js ├── 9. React Testing using Jest │ ├── Readme.txt │ ├── desktop.ini │ └── react-jest-app │ │ ├── .babelrc │ │ ├── desktop.ini │ │ ├── enzyme.js │ │ ├── package.json │ │ ├── public │ │ ├── desktop.ini │ │ ├── favicon.ico │ │ └── index.html │ │ └── src │ │ ├── List.js │ │ ├── List.test.js │ │ ├── desktop.ini │ │ └── index.js └── desktop.ini ├── Ch_06 ├── 10. Hosting Application using Docker │ ├── Readme.txt │ ├── desktop.ini │ └── my-next-app │ │ ├── Dockerfile │ │ ├── _env │ │ ├── desktop.ini │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── api │ │ │ ├── TestAPI.js │ │ │ └── desktop.ini │ │ ├── desktop.ini │ │ └── index.js │ │ └── style.css └── desktop.ini ├── Contributing.md ├── LICENSE.txt ├── README.md └── errata.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/.gitattributes -------------------------------------------------------------------------------- /9781484258682.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/9781484258682.jpg -------------------------------------------------------------------------------- /Ch_01/1. Starter Project/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_01/1. Starter Project/desktop.ini -------------------------------------------------------------------------------- /Ch_01/1. Starter Project/intro-to-js/css/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_01/1. Starter Project/intro-to-js/css/desktop.ini -------------------------------------------------------------------------------- /Ch_01/1. Starter Project/intro-to-js/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_01/1. Starter Project/intro-to-js/css/style.css -------------------------------------------------------------------------------- /Ch_01/1. Starter Project/intro-to-js/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_01/1. Starter Project/intro-to-js/desktop.ini -------------------------------------------------------------------------------- /Ch_01/1. Starter Project/intro-to-js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_01/1. Starter Project/intro-to-js/index.html -------------------------------------------------------------------------------- /Ch_01/1. Starter Project/intro-to-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_01/1. Starter Project/intro-to-js/package.json -------------------------------------------------------------------------------- /Ch_01/1. Starter Project/intro-to-js/scripts/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_01/1. Starter Project/intro-to-js/scripts/desktop.ini -------------------------------------------------------------------------------- /Ch_01/1. Starter Project/intro-to-js/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_01/1. Starter Project/intro-to-js/scripts/index.js -------------------------------------------------------------------------------- /Ch_01/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_01/desktop.ini -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/Readme.txt -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/desktop.ini -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/desktop.ini -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/package.json -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/desktop.ini -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/favicon.ico -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/index.html -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/logo192.png -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/logo512.png -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/manifest.json -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/public/robots.txt -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/App.css -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/App.js -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/App.test.js -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/Hooks/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/Hooks/desktop.ini -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/Hooks/useChangeAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/Hooks/useChangeAlert.js -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/MyComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/MyComponent.js -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/MyComponent2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/MyComponent2.js -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/desktop.ini -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/index.css -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/index.js -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/logo.svg -------------------------------------------------------------------------------- /Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/2. AJAX data request to GitHub API using axios/my-app/src/serviceWorker.js -------------------------------------------------------------------------------- /Ch_02/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_02/desktop.ini -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/Readme.txt -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/desktop.ini -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/SharedComponents/DynamicRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/SharedComponents/DynamicRouter.js -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/SharedComponents/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/SharedComponents/desktop.ini -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/desktop.ini -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/next.config.js -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/package.json -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/pages/SecondPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/pages/SecondPage.js -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/pages/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/pages/desktop.ini -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/pages/index.js -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/static/Images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/static/Images/1.jpg -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/static/Images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/static/Images/2.jpg -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/static/Images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/static/Images/3.jpg -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/static/Images/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/static/Images/desktop.ini -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/static/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/static/desktop.ini -------------------------------------------------------------------------------- /Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/3. Starter Next.js Application with Multimedia/my-next-app/style.css -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/Readme.txt -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/desktop.ini -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/SharedComponents/DynamicRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/SharedComponents/DynamicRouter.js -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/SharedComponents/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/SharedComponents/desktop.ini -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/desktop.ini -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/next.config.js -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/package.json -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/pages/GithubUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/pages/GithubUsers.js -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/pages/SecondPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/pages/SecondPage.js -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/pages/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/pages/desktop.ini -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/pages/index.js -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/static/Images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/static/Images/1.jpg -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/static/Images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/static/Images/2.jpg -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/static/Images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/static/Images/3.jpg -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/static/Images/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/static/Images/desktop.ini -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/static/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/static/desktop.ini -------------------------------------------------------------------------------- /Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/4. Interactive Next.js Application for Searching Github Users/my-next-app/style.css -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/Readme.txt -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/desktop.ini -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/Actions/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/Actions/actions.js -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/Actions/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/Actions/desktop.ini -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/Reducers/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/Reducers/desktop.ini -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/Reducers/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/Reducers/reducer.js -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/Store/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/Store/desktop.ini -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/Store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/Store/store.js -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/desktop.ini -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/next.config.js -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/package.json -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/pages/_app.js -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/pages/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/pages/desktop.ini -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/pages/index.js -------------------------------------------------------------------------------- /Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/5. Redux for State Management in a Next.js Application/my-next-app/style.css -------------------------------------------------------------------------------- /Ch_03/6. Working with GraphQL/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/6. Working with GraphQL/Readme.txt -------------------------------------------------------------------------------- /Ch_03/6. Working with GraphQL/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/6. Working with GraphQL/desktop.ini -------------------------------------------------------------------------------- /Ch_03/6. Working with GraphQL/my-next-app/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/6. Working with GraphQL/my-next-app/desktop.ini -------------------------------------------------------------------------------- /Ch_03/6. Working with GraphQL/my-next-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/6. Working with GraphQL/my-next-app/next.config.js -------------------------------------------------------------------------------- /Ch_03/6. Working with GraphQL/my-next-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/6. Working with GraphQL/my-next-app/package.json -------------------------------------------------------------------------------- /Ch_03/6. Working with GraphQL/my-next-app/pages/api/TestAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/6. Working with GraphQL/my-next-app/pages/api/TestAPI.js -------------------------------------------------------------------------------- /Ch_03/6. Working with GraphQL/my-next-app/pages/api/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/6. Working with GraphQL/my-next-app/pages/api/desktop.ini -------------------------------------------------------------------------------- /Ch_03/6. Working with GraphQL/my-next-app/pages/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/6. Working with GraphQL/my-next-app/pages/desktop.ini -------------------------------------------------------------------------------- /Ch_03/6. Working with GraphQL/my-next-app/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/6. Working with GraphQL/my-next-app/pages/index.js -------------------------------------------------------------------------------- /Ch_03/6. Working with GraphQL/my-next-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/6. Working with GraphQL/my-next-app/style.css -------------------------------------------------------------------------------- /Ch_03/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_03/desktop.ini -------------------------------------------------------------------------------- /Ch_04/7. Digital Clock using React, Next.js and Bootstrap/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_04/7. Digital Clock using React, Next.js and Bootstrap/Readme.txt -------------------------------------------------------------------------------- /Ch_04/7. Digital Clock using React, Next.js and Bootstrap/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_04/7. Digital Clock using React, Next.js and Bootstrap/desktop.ini -------------------------------------------------------------------------------- /Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/Pages/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/Pages/desktop.ini -------------------------------------------------------------------------------- /Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/Pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/Pages/index.js -------------------------------------------------------------------------------- /Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/README.md -------------------------------------------------------------------------------- /Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/Resources/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/Resources/desktop.ini -------------------------------------------------------------------------------- /Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/Resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/Resources/style.css -------------------------------------------------------------------------------- /Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/desktop.ini -------------------------------------------------------------------------------- /Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/next.config.js -------------------------------------------------------------------------------- /Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_04/7. Digital Clock using React, Next.js and Bootstrap/my-app/package.json -------------------------------------------------------------------------------- /Ch_04/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_04/desktop.ini -------------------------------------------------------------------------------- /Ch_05/8. JavaScript Testing using Jest/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/8. JavaScript Testing using Jest/Readme.txt -------------------------------------------------------------------------------- /Ch_05/8. JavaScript Testing using Jest/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/8. JavaScript Testing using Jest/desktop.ini -------------------------------------------------------------------------------- /Ch_05/8. JavaScript Testing using Jest/jest-testing-app/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/8. JavaScript Testing using Jest/jest-testing-app/desktop.ini -------------------------------------------------------------------------------- /Ch_05/8. JavaScript Testing using Jest/jest-testing-app/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/8. JavaScript Testing using Jest/jest-testing-app/functions.js -------------------------------------------------------------------------------- /Ch_05/8. JavaScript Testing using Jest/jest-testing-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/8. JavaScript Testing using Jest/jest-testing-app/package.json -------------------------------------------------------------------------------- /Ch_05/8. JavaScript Testing using Jest/jest-testing-app/tests/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/8. JavaScript Testing using Jest/jest-testing-app/tests/desktop.ini -------------------------------------------------------------------------------- /Ch_05/8. JavaScript Testing using Jest/jest-testing-app/tests/functions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/8. JavaScript Testing using Jest/jest-testing-app/tests/functions.test.js -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/Readme.txt -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/desktop.ini -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/react-jest-app/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/react-jest-app/.babelrc -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/react-jest-app/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/react-jest-app/desktop.ini -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/react-jest-app/enzyme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/react-jest-app/enzyme.js -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/react-jest-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/react-jest-app/package.json -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/react-jest-app/public/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/react-jest-app/public/desktop.ini -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/react-jest-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/react-jest-app/public/favicon.ico -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/react-jest-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/react-jest-app/public/index.html -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/react-jest-app/src/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/react-jest-app/src/List.js -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/react-jest-app/src/List.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/react-jest-app/src/List.test.js -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/react-jest-app/src/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/react-jest-app/src/desktop.ini -------------------------------------------------------------------------------- /Ch_05/9. React Testing using Jest/react-jest-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/9. React Testing using Jest/react-jest-app/src/index.js -------------------------------------------------------------------------------- /Ch_05/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_05/desktop.ini -------------------------------------------------------------------------------- /Ch_06/10. Hosting Application using Docker/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/10. Hosting Application using Docker/Readme.txt -------------------------------------------------------------------------------- /Ch_06/10. Hosting Application using Docker/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/10. Hosting Application using Docker/desktop.ini -------------------------------------------------------------------------------- /Ch_06/10. Hosting Application using Docker/my-next-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/10. Hosting Application using Docker/my-next-app/Dockerfile -------------------------------------------------------------------------------- /Ch_06/10. Hosting Application using Docker/my-next-app/_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/10. Hosting Application using Docker/my-next-app/_env -------------------------------------------------------------------------------- /Ch_06/10. Hosting Application using Docker/my-next-app/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/10. Hosting Application using Docker/my-next-app/desktop.ini -------------------------------------------------------------------------------- /Ch_06/10. Hosting Application using Docker/my-next-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/10. Hosting Application using Docker/my-next-app/next.config.js -------------------------------------------------------------------------------- /Ch_06/10. Hosting Application using Docker/my-next-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/10. Hosting Application using Docker/my-next-app/package.json -------------------------------------------------------------------------------- /Ch_06/10. Hosting Application using Docker/my-next-app/pages/api/TestAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/10. Hosting Application using Docker/my-next-app/pages/api/TestAPI.js -------------------------------------------------------------------------------- /Ch_06/10. Hosting Application using Docker/my-next-app/pages/api/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/10. Hosting Application using Docker/my-next-app/pages/api/desktop.ini -------------------------------------------------------------------------------- /Ch_06/10. Hosting Application using Docker/my-next-app/pages/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/10. Hosting Application using Docker/my-next-app/pages/desktop.ini -------------------------------------------------------------------------------- /Ch_06/10. Hosting Application using Docker/my-next-app/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/10. Hosting Application using Docker/my-next-app/pages/index.js -------------------------------------------------------------------------------- /Ch_06/10. Hosting Application using Docker/my-next-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/10. Hosting Application using Docker/my-next-app/style.css -------------------------------------------------------------------------------- /Ch_06/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Ch_06/desktop.ini -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/README.md -------------------------------------------------------------------------------- /errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/building-react-apps-with-server-side-rendering/HEAD/errata.md --------------------------------------------------------------------------------