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

Chapter 4. Working with Browsersync and Hot Module Replacement

Frontend development usually involves a considerable degree of trial and error. A naive web development workflow may look like this:

  1. Open your web app in a browser.
  2. Write or edit a few lines of code.
  3. Hit the browser's refresh button (or F5) and return to step 2.

This approach just won't scale, especially if you want to test your web app in multiple browsers and on different devices. Instead, you need to have the ability to instantly see the result of your work--how the web app looks in a browser and on mobile devices. If you don't test early, you may end up spending more time on fixing bugs later on.

In this chapter, you will learn how to improve the development workflow by configuring and using tools such as Browsersync and Webpack's Hot Module Replacement.