Extension Host

As you learned in the Extension Anatomy topic, an extension exposes the activate and deactivate methods and VS Code will manage its lifecycle. This topic provides more details on the Extension Host that manages all running extensions.

Extension host is a Node.js process in VS Code responsible for loading and running extensions. Although you don’t need to worry about the Extension Host when you are writing extensions, it is still useful to know what the Extension Host does to your extension.

Stability and Performance

VS Code aims to deliver a stable and performant editor to end users, and misbehaving extensions should not impact the user experience. The Extension Host in VS Code prevents extensions from:

  • Impacting startup performance
  • Slowing down UI operations
  • Modifying the UI

Additionally, VS Code lets extensions declare their Activation Events and loads them lazily. For example, the Markdown extension should only be loaded when a user opens a Markdown file. This makes sure that extensions do not consume unnecessary CPU and memory.