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 8. Authentication and Authorization

This chapter gets into the intricacies of securing the application. You will learn how to implement a token-based authentication and access control for an isomorphic application using React.

Authentication and authorization are present in almost all middle to large web applications; it's a very important aspect of the functionality of your app. Since it is such an important matter, it is also very important to make it as simple as possible for you, the developer, to code and extend when needed.

You will have public routes and protected routes, routes that only authenticated users can see. You could also have routes depending on authorization, but in our case, it is just another layer of assertion. These routes will continue to be defined and used in an isomorphic way, and with the mechanisms that we will build around them, we will provide the necessary behavior to make our application work as expected in this matter.

The topics we will cover in this...