Book Image

Isomorphic JavaScript Web Development

By : Tomas Alabes, Konstantin Tarkus
Book Image

Isomorphic JavaScript Web Development

By: Tomas Alabes, Konstantin Tarkus

Overview of this book

<p>The latest trend in web development, Isomorphic JavaScript, allows developers to overcome some of the shortcomings of single-page applications by running the same code on the server as well as on the client. Leading this trend is React, which, when coupled with Node, allows developers to build JavaScript apps that are much faster and more SEO-friendly than single-page applications.</p> <p>This book begins by showing you how to develop frontend components in React. It will then show you how to bind these components to back-end web services that leverage the power of Node. You'll see how web services can be used with React code to offload and maintain the application logic. By the end of this book, you will be able to save a significant amount of development time by learning to combine React and Node to code fast, scalable apps in pure JavaScript.</p>
Table of Contents (16 chapters)
Title Page
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Getting started with CSS modules


Another way to modularize your CSS is using CSS modules. This allows styling your React components with regular CSS (or Sass, Less, Stylus), without the worry about issues related to conflicting class selectors and it allows you reduce global styles to a minimum and even eliminate them completely.

With CSS modules, everything you write in CSS files is local by default; each file is compiled separately, so you can use simple class selectors with generic names--no need to worry about polluting the global scope.

Let's say we're building a simple button component, which may have different states (default, disabled, in-progress, and so on). Before CSS modules, we would need to use the BEM naming convention, to make sure that our CSS classes don't cause problems with other UI elements:

components/Button/Button.scss

.Button { /* all styles for default state */ } 
.Button-icon { /* styles for a child element */ } 
.Button--disabled { /* overrides for disabled state ...