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

outofbox-skins-sync

v1.0.2

Published

Sync local dir with outofbox.ru skins

Readme

Outofbox Skins Sync

Удобная работа с файлами шаблонов outofbox.ru.

По-умолчанию outofbox.ru предлагает возможность редактировать файлы шаблонов прямо в браузере, что не всегда удобно при интенсивной разработке. Данное ПО позволяет синхронизировать файлы из локального каталога.

При необходимости можно настроить скачивание измененных файлов с сервера в локальный каталог.

Ограничения

Внимание! В приложении нет встроенной защиты от параллельных запросов! Если два и более человек работают над одним и тем же шаблоном, то файл будет переписан тем содержимым, что было отправлено на сервер позже. Учитывайте это при разработке и по необходимости пользуйтесь системами контроля версий и другими способами деплоя файлов-шаблонов.

Установка

npm install -g outofbox-skins-sync

Запуск

outofbox-skins-sync path/to/config.yml

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

Пример конфига есть в config.yml.dist:

watch:
    path: '.'

sync:
    base_uri: 'http://outofbox-domain.tld/_api/skins/skin-name/files/'
    token: ~
    #ignored:
    #    - /(^|[\/\\])\../
    #    - /node_modules/
    #since_file: 'sync_since.dist'

watch.path – путь до каталога, в котором надо отслеживать изменения, может быть либо абсолютным путём, либо относительным. Относительные пути будут строиться от расположения файла конфигурации.

sync.base_uri – путь до API шаблона

sync.token – секретный токен. Получить его можно в административной панеле вашему сайта на платформе outofbox.ru

sync.ignored – (anymatch-совместимое выражение) - список для игнорирования файлов/каталогов. По-умолчанию, если этот список не задан, будут игнорироваться все файлы с точкой в начале (например, .gitignore) и каталог node_modules

sync.since_file – если указан путь до файла, то приложение будет помнить дату последнего скачивания файлов с сервера. При запуске приложения из файла будет извлечена дата последнего скачивания файлов и все изменения с этой даты будут скачаны в локальных каталог. Пример формата даты можно найти в файле sync_since.dist в этом репозитории.