npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

vsext

v1.0.1

Published

A CLI for download VSCode Extensions files, based on got, and install ext on offline use

Readme

🚀 Project Introduction (Internationalized)

This Command-Line Interface (CLI) tool aims to provide convenience for users who need to use Visual Studio Code (VSCode) and its extensions in offline environments. It allows you to download VSCode extensions in vsix format and save them locally, so they can be transferred to target systems without internet access.

中文文档

Features:

  • ✨ Easy-to-Use: This tool offers an intuitive command-line interface, making the plugin download process simple and fast.
  • 🌐 Offline Usage: Obtain the required VSCode extensions without an internet connection, facilitating installation and usage in offline environments.
  • 🔍 Specify Versions: You can specify the desired version of an extension to ensure compatibility with the target system.
  • 🛠️ Highly Customizable: Supports custom download options through command-line parameters, meeting various requirements.

Sample download:

iShot_2023-07-27_18.02.25

⚙️ Technology Used

Project Dependencies

This tool utilizes the following technologies and dependencies:

  • got (Version 13.0.0): got is a lightweight, Promise-based HTTP request library used for fetching plugin files from remote servers. It provides a simple yet powerful interface for downloading VSCode extensions.
  • yargs (Version 17.7.2): yargs is a library used for parsing command-line arguments, simplifying the process of handling user inputs. In this tool, yargs is employed to parse user-provided parameters, such as plugin names and versions.

Project Structure

The project consists of the following files:

  • cli.mjs: This serves as the main entry point for the command-line interface, handling user input and invoking corresponding functionality modules.
  • index.mjs: The entry file of the project, used for starting the tool or enabling hot reload during development.
  • package.json: Contains essential information about the project, including dependencies, script commands, and configurations.

Script Commands

In the package.json file, the following script commands are defined:

  • dev: Uses nodemon to monitor changes in the index.mjs file, enabling hot reload during development to enhance productivity.

📦 Quick Start

📦 Install the CLI Tool

Before using the tool, you need to install the vsext globally:

npm i -g vsext

⬇️ Download Extensions

To download all installed extensions for the current system, execute the following command:

vsext d

This will download compressed packages of all installed extensions to the current directory.

📥 Install Downloaded Offline Extensions

To install previously downloaded extensions in offline mode, use the following command:

vsext i

This will install the downloaded extension files.

⚖️ Copyright and License

This project is released under the MIT License.

FAQs

If prompted with the "code" command not found, you can install the command in VSCode's command palette:

  1. Open VSCode, then use the shortcut Shift + Command + P to bring up the Command window.
  2. Enter "shell Command" in the input box, and you'll see the option "Install 'code' command in PATH" below. Click it to install the command.

Feel free to reach out if you have any questions or need further assistance. We appreciate your support and hope this tool brings convenience to your offline VSCode usage!