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 🙏

© 2025 – Pkg Stats / Ryan Hefner

cssrb

v0.3.0

Published

Downloads

2

Readme

CSSRB переименовывает пути к файлам в url(), а также копирует / перемещает эти файлы.

Установка

Перед установкой следует убедиться, что уже установлены:

  • Node.js (platform built on Chrome's JavaScript runtime) — nodejs.org
  • npm (package manager for node) — npmjs.org

Выполнить в command-line:

npm install cssrb -g

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

Сначала следует создать конфгурационный файл со следующей структурой:

exports.config = {
    fromBase: '/src/dir/name/', // <- абсолютный путь
    toBase:  '/dst/dir/name/', // <- абсолютный путь
    patterns: { // <- может быть более одного
        'regular expression': 'new/dir/', // <- относительный путь
        '..': '..'
    }
};

Здесь:

  • fromBase — полный путь к корневому каталогу файлов, отсюда CSSRB копирует.
  • toBase — полный путь к корневому каталогу файлов, сюда CSSRB копирует.
  • patterns — пары значений { re: dir }, состоящие из регулярного выражения, с которым CSSRB будет сверять пути к файлам, и путём, в который переименовать, если совпало.

Алгоритм простой, его следует понимать, чтобы лучше писать конфигурационный файл:

  • взять из url() путь к файлу — inPath;
  • сверить его с шаблонами;
  • если совпадение найдено, взять из inPath имя файла (для /my/file.png это file.png) и присоединить к dir из совпавшей пары, после чего заменить в CSS старый путь на новый;
  • если при запуске CSSRB был указан ключ -mv, переместить файл из fromBase + inPath в toBase + dir + fileName;
  • или, если при запуске CSSRB был указан ключ -cp, скопировать файл из fromBase + inPath в toBase + dir + fileName.

Пример конфигурационного файла .cssrb.js:

exports.config = {
    fromBase: '/Users/user/projects/cssrb/sample/',
    toBase:  '/Users/user/projects/cssrb/sample/',
    patterns: {
        '^/?from': '/to/'
    }
};

Пример CSS sample.css:

a {
    test: url(/from/sample.png)
}

Запуск (из корня проекта cssrb):

cssrb -c sample/.cssrb.js sample/sample.css sample/_sample.css -cp

В результате появился каталог sample/to с файлом sample.png, а _sample.css выглядит так:

a {
    test: url('/to/sample.png')
}

Справка:

cssrb
    показывает этот текст
cssrb -h
cssrb --help
    показывает этот текст
cssrb -c <config_path>
cssrb --config <config_path>
    указывает путь к конфигурационному файлу
cssrb -cp
cssrb --copy
    копировать файлы
cssrb -mv
cssrb --move
    перемещать файлы
csso <in_имя_файла> <out_имя_файла>
csso -i <in_имя_файла> -o <out_имя_файла>
csso --input <in_имя_файла> --output <out_имя_файла>
    переименовывает URL'ы в <in_имя_файла> и записывает результат в <out_имя_файла>
cssrb -v
cssrb --version
    показывает номер версии