Improving Your JavaScript's Performance
  • Introduction
  • Do we need to care about performance issues?
  • Deciding What To Optimize
    • Why Data?
    • What Types of Data Do I Need?
    • User Analytics
    • The Browser - Loading
      • The Browser - Profiling on the Processing Tab
      • The Browser - Throttling
      • The Browser - Memory Usage
    • The Server
      • Profiling Your Code On The Server
      • Using Profiling Data - NodeJS
  • Optimization Concepts
    • Overall Application Structure (or Communication)
    • Structures and Algorithms
    • JavaScript
    • Browsers
Powered by GitBook
On this page
  1. Optimization Concepts

JavaScript

JavaScript specific performance techniques.

Being an asynchronous event-driven programming language JavaScript has some unique challenges and opportunities when writing fast, efficient code. Additionally, JavaScript itself has some unique coding functionality that makes optimization of the application require a different mindset.

PreviousStructures and AlgorithmsNextBrowsers

Last updated 6 years ago