Skip to content

Introducing Clinic.js - A performance toolkit for Node.js developers

Clinic simplifies the process of investigating and fixing performance issues in your Node.js applications

Dig into your app's performance issues

One of the problems Node.js developers have to deal with is figuring out why their app is "slow". There aren't many tools available to help dig into performance issues so we decided to create some. We're really happy to announce the open source Clinic.js toolkit and Clinic Doctor tool.

In a nutshell, Clinic.js simplifies the process of investigating and fixing performance issues in your Node.js applications.

Developers First

Our overarching aim with the project was to create developer tools with amazing user experience and a focus on performance. This means the tools should not require a large infrastructure to run and should be usable on developer laptops. They should generate portable outputs that can be shared between developers and they should have a progressive approach to information display where the fine detail is only provided if you want it.

To achieve this we assembled a team of experts in Node.js Core, Data Science, Design, Front-End Development, Data Visualisation and Product, to create Clinic.js.

Clinic Doctor: Diagnose Performance Issues

Doctor is the first tool that we are releasing in the toolkit. It helps diagnose performance issues in your application and guides you towards more specialised tools to look deeper into your specific issues.

Symptoms such as low CPU usage, blocking garbage collection, frequent event loop delay or a chaotic number of active handles may indicate a number of potential problems. Doctor helps narrow down the possibilities by generating a recommendation based on those symptoms. Examples such as I/O issues, non-optimized garbage collection and blocked event loop are quite common. Doctor will help you with all of these performance issues.

Event loop delay has been marked in red to indicate a problem. Once the performance problem is diagnosed, Doctor helps you find the right solution. It may point you to a specific profiling tool or suggest a common approach to the problem. For those who prefer more context, Doctor also provides an in-depth explanation of the performance issue. In situations where you have a hunch that the issue may be different than the recommendation, Doctor provides easy access to the documentation of all the other performance issues.

Read More section helps you understand the issue in-depth. Doctor is very easy to use - all it takes is a single command to monitor your app and generate a recommendation.

Doctor is compatible with Node.js versions 8 and 9. (Note you might hit some issues if you pick an old version of those release lines)

Explore Clinic on Github:

Re-introduction to 0x

NearForm has a long history working on performance in Node.js apps and our own David Mark Clements created the 0x tool many moons before we kicked off Node Clinic.

0x helps profile your application with the use of flamegraphs and is one of the tools that Doctor will recommend in certain situations.

Flamegraphs simplify identification of hot paths in your code. Each block in a flamegraph represents a function. Its color matches how often it was observed still executing whilst not having called any other function yet (where applicable).

The darker red a block is the hotter it is - and the more likely it is a bottleneck blocking the event loop (synchronously). Each block on top of another block represents one function that has called another.

The width of the block represents the total time a call frame was part of a stack on CPU relative to the total time sampling. 0x is very easy to use - all it takes is a single command to monitor your app and generate a flamegraph.

0x is compatible with Node.js v6+ (if you require Node.js v4 support, 0x v2 supports Node.js v4).

Explore 0x on Github: https://github.com/davidmarkclements/0x

Clinic Flame

Clinic Flame wraps 0x so that it can be used by Node Clinic. Just type clinic flame to learn how to use it.

Participate in the community

Clinic is an open-source project, which means everyone is welcome to join us.

If you don't know where to start, please see our CONTRIBUTING.md .

Clinic is a safe environment for everyone, thanks to our Code of Conduct .

Project is licensed under Apache 2.0 license.

Please send us your data

We'd really appreciate it if you would send us your Doctor data so we can continue to improve our models and recommendations. Note this is only timing data and will not leak any information about your code or app data. Please consult the README to find out how to send the data. Be assured that the tool does not send any data automatically.

Finally

We are actively expanding our Clinic toolkit. Expect more tools very soon!

More Performance Tools for Node.js

Check out our post on Clinic Bubbleprof , a new way to visualize your app's performance!

Insight, imagination and expertly engineered solutions to accelerate and sustain progress.

Contact