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 6. Creating Data API with GraphQL

In this chapter, you will learn how to create a data API server in compliance with GraphQL specification. Why GraphQL, and not a traditional RESTful API? Because, if you start developing a data API server following RESTful methodology and try to optimize it for your web and mobile client apps, at the end of the day, you will end up having something very similar to GraphQL, which is the technology used at Facebook to request and deliver data to mobile and web apps since 2012. It allows them to move fast, increase developer productivity and seems to be working brilliantly at Facebook scale and performance requirements, serving hundreds of billions of requests per day.

In 2015, it was open sourced in a form of GraphQL specification, a reference (runtime) library implemented in JavaScript, dev tools (GraphiQL IDE), and documentation that can be found at http://graphql.org.

The topics covered in this chapter are as follows:

  • The basics of GraphQL
  • GraphQL query...