Skip to content
This repository has been archived by the owner on Mar 10, 2021. It is now read-only.

🎇 A simple clean and clear frontend architecture for the Next.js9

Notifications You must be signed in to change notification settings

lotesystem/lote-frontend-next9

Repository files navigation

Frontend Architecture:

Creating a simple clean, and clear frontend architecture with the help of CSS Modules it is a build process, not a tool or language, It uses the javascript to locally scope the component styles and make unique class names so styles will not clash with other developer styles even a thousand developers are working on the same codebase. It is a well establish industry standard. Google and other tech industries are using same pattern. It will also make the task easier for the new developers because their styles will not break the old written styles.

With this approach, our web app is really scalable Because the styles are locally scoped to the component. This boilerplate heavily depends upon the custom styling option rather than Next.js default way of writing styles.

Whenever you choose a custom option in Next.js for styling you have to do all stuff on your own.

What stuff?

  • Minify the stylesheet for the production.
  • Add browsers autoprefixer styles on your production stylesheet.

To overcome this problem we will use PostCSS plugins.

What is PostCSS? It is a tool for transforming CSS with JavaScript and this tool consist of many plugins that help us to minify our stylesheets and add vendor prefixes so webpage styles can run on all browsers.

We also want the taste of scss in our stylesheets so we use @zeit/next-sass with node-sass package.

Our styles Supported browsers

This architecture supports the latest, stable releases of all major browsers and platforms. On Windows, only support Internet Explorer 10-11 / Microsoft Edge.

Note: Alternative browsers that use the latest version of WebKit, Blink, or Gecko, whether directly or via the platform’s web view API, are not explicitly supported.

However, the styles should (in most cases) display and function correctly in these browsers as well. But don't worry on the production different browser vendors styles are automatically added.

Some third-party packages we are using.

  • cssnano (minify our stylesheet in the production)
  • autoprefixer@9 (Autoprefixer version 9 is stable version and they are currently working on version 10 in which they are changing the principal and creating a new way to add browser vendor prefixes on the CSS. So stick with version 9 until version 10 becomes stable. What is does? This PostCSS plugin is to handle intended browser support via CSS prefixes)

License

MIT