Extension Packs

March 07, 2017 Wade Anderson, @waderyan_

If you have followed our blog for the last year, you'll notice I write an Extension Roundup blog once a month. I like to write these blogs to let you know about the cool extensions being created in the community and to inspire you to create your own. I often put a theme around the Roundup blog: something like JavaScript extensions or CodeLens extensions (last month).

Creating a theme for this blog is a natural fit for a relatively new part of the extension API, Extension Packs. Last month I created my first Extension Pack to bring together all of my favorite CodeLens extensions. In this month's Roundup, I want to teach you how to make your own pack and give you some examples of why you would want to.

Tip Refer to the Extension Pack documentation for more details.

How do I make an Extension Pack?

It is very easy to make your own Extension Pack. Follow the instructions on installing the Yeoman VS Code extension generator.

Once the Yeoman generator is installed, run the following command:

yo code

Choose New Extension Pack as shown in the image below.

new extension pack

Fill out the options as given by Yeoman. One of the options is to create an Extension Pack based on the extensions you currently have installed. This will fill out much of the Extension Pack's details for you!

To include an extension, your extension manifest file (package.json) needs the following attribute:

"extensionPack": [
        "publisherid.extensionName"
    ]

Tip You can see the publisherid.extensionName at the end of the URL of an extension on the Marketplace.

For my CodeLens Roundup, this is what my extension manifest file looked like:

"extensionPack": [
    "eamodio.gitlens",
    "VisualStudioOnlineApplicationInsights.application-insights",
    "kisstkondoros.vscode-codemetrics",
    "chrmarti.regex",
    "pflannery.vscode-versionlens"
]

Why would I want to create an Extension Pack?

There are many reasons to create an Extension Pack:

  • Want to create a list of your favorite extensions to share with your friends? Use an Extension Pack.
  • Want to bundle your Python extensions, so you can easily disable and enable when you are working on a Python project? Use an Extension Pack.
  • Want to create a curated list of extensions for a blog post on VS Code's website? Use an Extension Pack.

You can find the Extension Packs that others have created by querying using the Extension Pack category: click here for the Marketplace or type category:"Extension Packs" into the Extension View search bar in VS Code.

Some of my favorite extensions are:

  • Azure Extension Pack by Microsoft. If you use Azure resources, this is a must. We created this pack to group the various Azure extensions into one installation.
  • React Native iOS Pack by Matt Bierner. Matt has put together good tools for working with React Native, Objective-C, and Swift.
  • Node.js Extension Pack by waderyan. Disclaimer: Shameless self-promotion šŸ˜Š. I created this extension to pull together my favorite Node.js extensions from previous blog posts.

Have other extensions you like or want to see your extension in the next Roundup? Ping us onĀ Twitter!

Wade Anderson, VS Code Team MemberĀ  @waderyan_