An open API service indexing awesome lists of open source software.

https://github.com/patrickleet/streaming-ssr-react-styled-components

5 part tutorial teaching how to build a streaming ssr react styled components application with Parcel and Docker, as well as how to static render and host with nginx instead.
https://github.com/patrickleet/streaming-ssr-react-styled-components

Last synced: 7 months ago
JSON representation

5 part tutorial teaching how to build a streaming ssr react styled components application with Parcel and Docker, as well as how to static render and host with nginx instead.

Awesome Lists containing this project

README

          

# streaming-ssr-react-styled-components

Learn how this boilerplate was created with my tutorials on HackerNoon!

* [Part 1: Move over Next.js and Webpack!!](https://hackernoon.com/move-over-next-js-and-webpack-ba367f07545)
* [Part 2: A Better Way to Develop Node.js with Docker And Keep Your Hot Code Reloading](https://hackernoon.com/a-better-way-to-develop-node-js-with-docker-cd29d3a0093)
* [Part 3: Enforcing Code Quality for Node.js - Using Linting, Formatting, and Unit Testing with Code Coverage to Enforce Quality Standards](https://hackernoon.com/enforcing-code-quality-for-node-js-c3b837d7ae17)
* [Part 4: The 100% Code Coverage Myth](https://hackernoon.com/the-100-code-coverage-myth-900b83d20d3d)
* [Part 5: A Tale of Two (Docker Multi-Stage Build) Layers - Production Ready Dockerfiles for Node.js using SSR or Nginx](https://hackernoon.com/a-tale-of-two-docker-multi-stage-build-layers-85348a409c84)
* [Part 6: Bring In The Bots, And Let Them Maintain Our Code!](https://hackernoon.com/bring-in-the-bots-and-let-them-maintain-our-code-gh3s33n9)

UPDATE: Sorry everyone, the Hackernoon formatting got messed up in the import, and I THINK they are all fixed now - can you please point out to me if something is not?

Just in case...

You can find the original versions of the articles on Medium with the original formatting at the following links:

* https://medium.com/hackernoon/move-over-next-js-and-webpack-ba367f07545
* https://medium.com/hackernoon/a-better-way-to-develop-node-js-with-docker-cd29d3a0093
* https://medium.com/hackernoon/enforcing-code-quality-for-node-js-c3b837d7ae17
* https://medium.com/hackernoon/the-100-code-coverage-myth-900b83d20d3d
* https://medium.com/hackernoon/a-tale-of-two-docker-multi-stage-build-layers-85348a409c84

Sorry for the inconvenience in tracking these down!

## tl;dr;

### Developing with Docker

```
# setup only needs to be run once
make setup

make install
make dev
```

### Developing Locally

```
npm i
npm run dev
```