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 Webpack loaders


There is not yet an agreed convention on how JavaScript modules should reference or embed resource files. For example, if you want to reference a JSON file in your JavaScript code you would normally write something like this:

import fs from 'fs'; 
const text = fs.readFileSync(__dirname + './data.json', 'utf8'); 
const data = JSON.parase(text); 

There are two issues with this code. One is that the fs module is not isomorphic; you won't be able to run this code in a browser. Another issue is that this code is quite verbose.

Ideally, you want to write something like this instead:

import data from './data.json'; 

Webpack solves this problem through loaders. A loader is just a Node.js compatible JavaScript function, which accepts a source string (or object), manipulates the originally loaded content, and returns a JavaScript string or some arbitrary content object. It may also have side effects, for example, manipulating files on disk. Loaders can be chained; the...