juandc / BancoBebe

โš›๏ธ๐Ÿ’จ React app: SSR and PWA. Without Next, CRA, or Gatsby.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BancoBebe

BB: Somos tu mamรก - React Webapp - SSR - PWA - Without Next, CRA, or Gatsby.

โš ๏ธ Warning: No longer maintained. Check react-chocolate or react-router-ultra.

SPA vs. SSR

This was complicated. I'm a fan of microservices, but in this case the facility and advantages of monorepos for the API and rendering from the server were higher.

These are my initial thoughts:

  • SSR
  • Data Storage (and API) using Node.js and MongoDB
  • Authentication logic with Cookies ๐Ÿช
  • Data come straight from Node files that connect to Mongo (really cool ๐Ÿ˜Ž)
  • Less importance data could be fetched from the client to an API (GraphQL? Long live this ๐Ÿ™Œ)
  • Landing Pages could be SPAs, but not sure... ๐Ÿค”

The deal is how to do this! ๐Ÿ˜…

Frontend Architecture

Tech and tools:

  • Express.js -> Server, SSR, DB (data) logic, SSR and API...
  • React -> UI using renderToString and hydrate (streams are cool but does not support React Helmet or prefetching), some pages load data initially from the server, but it needs an API or something to load the same data just in case the page loads in the browser side (React Router Links), other pages just does not load data from the server but in the browser with an API...
  • Webpack + Babel -> ES6+ to JS in bundles, for server and browser (check `config/webpack.*.js)...
  • Webpack + loadable-components -> Code Splitting with ssr and no-ssr support...

React.lazy still does not supports SSR...

Design System Principles

All products (just one, by now ๐Ÿ˜…) should follow these simple rules:

โ›ฐ Inspirational

We take inspiration from everywhere. For the same, our product should be a source of inspiration for developers, designers and other product creators. Not only the final result, all our processes must be planned and executed with excellence.

โšช๏ธ Clean and spaced

Our UI should create a peaceful atmosphere, triggering creativity of users. This ambiance can be shaped by leaving a lot of space around every piece of interface. Cluttered interface is the source of stress that produces cortisol and adrenaline, both blocks our creative powers.

๐Ÿ’ช Clarity and Consistency

The entire application should have the same objectives and should talk to the users in the same way, either visually or in writing.

๐Ÿšผ Perceived stability

Even with robust and complex platforms, users should perceive the processes as simple and familiar as possible.

๐ŸŽฎ User control and forgiving

Users should have the feeling of control over the product, the application must allow the user to change his mind or start a new process whenever he needs it.

โ™ฟ๏ธ Accessibility

Our products should be usable for any user. We must build perceptible, operable, understandable and robust products.

๐Ÿ“ฑ Mobile first

Design and development always starts on the mobile. The responsive design is not optional, but priority and mandatory.

๐Ÿ‘ทโ€โ™€ Predictable Architecture

Architecture must be predictable and natural. Features should be placed in the right context to be easy to discover by new users.

โ™ป๏ธ Reusability

Every hour that we invest working on a component should serve to build other components and prevent you or someone else from having to rebuild our work.

๐Ÿ”ก Covering all scenarios

We account for all โ€˜statesโ€™ in the system, and there are symbols for each of these states.

๐Ÿ˜˜ K.I.S.S. (Keep it simple)

Cover all scenarios, but do not over-complicate users and yourselves with unnecessary details.

๐Ÿ‘ฅ Shareable

We must build and work with tools that allow us to share all our work.

About

โš›๏ธ๐Ÿ’จ React app: SSR and PWA. Without Next, CRA, or Gatsby.

License:MIT License


Languages

Language:JavaScript 100.0%