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

likecu-vscode-remote-ssh

v3.0.3

Published

VS Code Remote-SSH 插件与核心管理工具

Downloads

554

Readme

likecu-vscode-remote-ssh

VS Code Remote-SSH 插件 + VS Code Server 离线包集合。

适用场景

远程机器(如 UOS 统信)无法访问外网时,需要:

  1. 本地安装 Remote-SSH 插件(VSIX)
  2. 远程机器部署 VS Code Server(离线包)

包含内容

Remote-SSH 插件 (VSIX)

适配 VS Code ^1.96.0(含 1.104)

| 版本号 | 发布日期 | 引擎要求 | |--------|---------|---------| | 0.122.2025111815 | 2025-11-18 | ^1.96.0 | | 0.121.2025093015 | 2025-09-30 | ^1.96.0 | | 0.120.2025050815 | 2025-05-08 | ^1.96.0 | | 0.119.2025033120 | 2025-03-31 | ^1.96.0 | | 0.118.2025022515 | 2025-02-25 | ^1.96.0 | | 0.117.2025013120 | 2025-01-31 | ^1.96.0 |

适配 VS Code 1.95.x

| 版本号 | 发布日期 | 引擎要求 | |--------|---------|---------| | 0.116.2024111219 | 2024-11-12 | ^1.95.0 | | 0.115.2024092415 | 2024-09-24 | ^1.93.0 | | 0.114.2024090417 | 2024-09-04 | ^1.93.0 | | 0.113 ~ 0.105 | 2023~2024 | ^1.82~1.89 |

VS Code Server(UOS 离线部署)

| VS Code 版本 | 架构 | |-------------|------| | 1.95.0 ~ 1.95.3 | linux-x64, linux-arm64 | | 1.104.0 ~ 1.104.2 | linux-x64, linux-arm64 |

安装

npm install -g likecu-vscode-remote-ssh
# 或通过腾讯镜像
npm install -g likecu-vscode-remote-ssh --registry=http://mirrors.tencent.com/npm/

使用

1. 安装 Remote-SSH 插件

# 列出可用版本
remote-ssh-vsix list

# 安装到 VS Code
remote-ssh-vsix install 0.116

2. 部署 VS Code Server 到远程 UOS

# 查看可用的 Server 包
remote-ssh-vsix server

# 获取包路径
remote-ssh-vsix server-path 1.95.3 x64

手动部署步骤:

# 1. 传输到远程机器
scp vscode-server-linux-x64-1.95.3.tar.gz user@remote:~/

# 2. 在远程机器上执行
# 获取 commit hash(从文件名或本地 VS Code Help > About)
COMMIT="f1a4fb101478ce6ec82fe9627c43efbf9e98c813"

# 创建目录并解压
mkdir -p ~/.vscode-server/cli/servers/Stable-${COMMIT}/server
tar -xzf vscode-server-linux-x64-1.95.3.tar.gz \
    -C ~/.vscode-server/cli/servers/Stable-${COMMIT}/server \
    --strip-components=1

许可

MIT