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

@weavix/cli

v0.5.0

Published

CLI to work with plugins of Yandex Tracker

Downloads

555

Readme

@weavix/cli

CLI-инструмент для локальной разработки плагинов: создание из шаблона, отладка, сборка, обновление шаблона. Публикация и регистрация плагинов выполняются отдельно — за пределами этого CLI.

Установка

npm install -g @weavix/cli

Конфигурация

Перед первым использованием задайте параметры окружения. Они нужны командам build и debug для генерации config.json и сборки бандла.

weavix config set    # интерактивно задать значения
weavix config show   # показать текущую конфигурацию
weavix config clear  # удалить файл конфигурации

Конфигурация хранится в ~/.tracker-cli/config.json. URL Tracker'а захардкожен на https://tracker.yandex.ru и не настраивается; окружение всегда production (тестовой среды нет).

Быстрый старт

1. Создание плагина

weavix create

Запросит шаблон, имя/описание плагина и инициализирует папку проекта.

2. Отладка

weavix debug            # с валидацией манифеста
weavix debug --no-lint  # без валидации

Запускает локальный dev-сервер. Плагин ищите в слоте, указанном в manifest.json.

3. Сборка

weavix build

Собирает прод-бандл плагина в dist/.

4. Обновление шаблона

weavix up

Подтягивает свежие файлы шаблона/конфигов в проект, сделанный из старой версии.

Доступные команды

| Команда | Назначение | |---|---| | create | создать новый плагин из шаблона | | up | обновить плагин до актуальной версии шаблона | | build | собрать плагин для продакшена | | debug [--no-lint] | локальный dev-сервер с hot reload | | lint | TypeScript + ESLint | | config set\|show\|clear | управление конфигурацией CLI |

Команды публикации/регистрации/администрирования (login, submit, install, deploy и т. п.) во внешней сборке отсутствуют — они есть только во внутренней сборке @yandex-data-ui/tracker-cli.