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

@vv0rkz/js-template

v1.6.0

Published

Reusable setup for JS projects with husky, changelog, gh tools

Readme

@vv0rkz/js-template

⚡ Переиспользуемый шаблон для JS проектов с husky, changelog, GitHub tools

🚀 Установка

npm install -D @vv0rkz/js-template npx jst init

💻 Использование

# Короткая команда (рекомендуется)

npm run _ tasks
npm run _ release
npm run _ create-task "Новая фича"

# Или полная
npm run jst tasks
npm run jst release

📋 Команды

Управление проектом

  • jst init — инициализация проекта

Разработка

  • jst changelog — создать changelog
  • jst release — полный релиз (проверка + changelog + README)
  • jst update-readme — обновить README
  • jst push-release — запушить релиз в main

Управление задачами

  • jst tasks — список открытых задач
  • jst create-task [название] — создать задачу
  • jst bugs — список открытых багов
  • jst create-bug [название] — создать баг
  • jst all-issues — все открытые issues

📦 Что устанавливается

  • ✅ Husky + хуки (commit-msg, pre-push, post-commit)
  • ✅ Commitlint конфиг (проверка коммитов)
  • ✅ Changelogen конфиг (автогенерация changelog)
  • ✅ GitHub tools скрипты (управление задачами)
  • ✅ .gitignore (готовый файл)

🎯 Пример использования

Установка в новый проект

mkdir my-awesome-js-project
cd my-awesome-js-project
npm init -y
npm install -D @vv0rkz/js-template
npx jst init

Работа с задачами

Создать задачу
npm run _ create-task "Добавить темную тему"

Посмотреть все задачи
npm run _ tasks

Создать баг
npm run _ create-bug "Кнопка не работает"

Посмотреть баги
npm run _ bugs

Релиз версии

Сделать фичу
git add .
git commit -m "feat: добавлена темная тема"

Создать релиз
npm run _ release

Запушить в main
npm run _ push-release

📁 Структура проекта после установки

my-project/
├── .husky/
│ ├── commit-msg # Проверка формата коммитов
│ ├── pre-push # Запуск тестов перед push
│ └── post-commit # Сообщение после коммита
├── tools-gh/ # GitHub утилиты
│ ├── create-task.js
│ ├── create-bug.js
│ ├── update-readme.js
│ └── ...
├── .gitignore # Готовый .gitignore
├── changelog.config.js # Конфиг для changelog
├── commitlint.config.js # Правила для коммитов
└── package.json # С готовыми скриптами

🛠️ Технологии

📝 Формат коммитов

feat: новая функция fix: исправление бага docs: изменения в документации refactor: рефакторинг кода perf: улучшение производительности test: добавление тестов chore: обновление зависимостей

📄 Лицензия

MIT © vv0rkz

# 🚀 Публикация
cd js-template
npm login
npm publish --access public
# 💻 Использование в проекте

# В новом проекте
npm install -D @vv0rkz/js-template
npx jst init

# Работа через короткую команду _
npm run _ tasks
npm run _ release
npm run _ create-task "Моя задача"