
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
@donaldpipowitch/vscode-extension-core
Advanced tools
Exports some useful APIs to get information about VS Code extensions.
@donaldpipowitch/vscode-extension-core
Exports some useful APIs to get information about VS Code extensions.
⚠️ This package uses a non-public Visual Studio MarketPlace APIs which could break at any time. ⚠️
💡 This package was created as a part of the "How to create a language server and VS Code extension" article. Don't expect a fully featured and supported package, but feel free to use it, if you find it useful. 💡
$ npm install @donaldpipowitch/vscode-extension-core
Search for extensions:
import { search } from '@donaldpipowitch/vscode-extension-core';
// search for "prettier"-related extensions
const query = 'prettier';
const { request } = search(query);
request.then(console.log);
// Logs:
// [
// {
// "publisher": {
// "publisherId": "d16f4e39-2ffb-44e3-9c0d-79d873570e3a",
// "publisherName": "esbenp",
// "displayName": "Esben Petersen",
// "flags": "none"
// },
// "extensionId": "96fa4707-6983-4489-b7c5-d5ffdfdcce90",
// "extensionName": "prettier-vscode",
// "displayName": "Prettier - Code formatter",
// "flags": "validated, public",
// "lastUpdated": "2018-08-09T12:05:04.413Z",
// "publishedDate": "2017-01-10T19:52:02.703Z",
// "releaseDate": "2017-01-10T19:52:02.703Z",
// "shortDescription": "VS Code plugin for prettier/prettier",
// "deploymentType": 0
// },
// // ...
// ]
Cancel search:
import { search } from '@donaldpipowitch/vscode-extension-core';
// search for "prettier"-related extensions
const query = 'prettier';
const { cancel, request } = search(query);
cancel();
request.then(console.log);
// Logs: undefined
FAQs
Exports some useful APIs to get information about VS Code extensions.
We found that @donaldpipowitch/vscode-extension-core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.