Book Image

Learning TypeScript

By : Remo H. Jansen
Book Image

Learning TypeScript

By: Remo H. Jansen

Overview of this book

<p>TypeScript is an open source and cross-platform typed superset of JavaScript that compiles to plain JavaScript that runs in any browser or any host. It allows developers to use the future versions of JavaScript (ECMAScript 6 and 7) today. TypeScript adds optional static types, classes, and modules to JavaScript, to enable great tooling and better structuring of large JavaScript applications.</p> <p>This book is a step-by-step guide that will get you started with TypeScript with the help of practical examples. You start off by understanding the basics of TypeScript. Next, automation tools like Grunt are explained followed by a detailed description of function, generics, callbacks and promises. After this, object-oriented features and the memory management functionality of TypeScript are explained. At the end of this book, you will have learned enough to implement all the concepts and build a single page application from scratch.</p>
Table of Contents (18 chapters)
Learning TypeScript
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Performance analysis


Performance analysis (also known as performance profiling) is the observation and study of resource usage by an application. We will perform profiling in order to identify performance issues in our applications. A different performance profiling process will be carried out for each type of resource using specific tools. We will now take a look at how we can use Google Chrome's developer tools to perform network profiling.

Network performance analysis

We are going to start by analyzing network performance. Not so long ago, in order to be able to analyze the network performance of an application, we would have had to write a small network logging application ourselves. Today, things are much easier thanks to the arrival of the performance timing API (http://www.w3.org/TR/resource-timing/). The performance timing API allows us to access detailed network timing data for each loaded resource.

The following diagram illustrates the network timing data points that the API provides...