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 🙏

© 2024 – Pkg Stats / Ryan Hefner

file-inspector

v0.2.13

Published

Inspecting files in the source

Downloads

4

Readme

File inspector

Описание.

Проверяет файлы по регулярным выражениям.

установка: npm install -g file-inspector

обновление: npm update -g file-inspector

вызов справки: file-inspector -h

запуск: file-inspector --config ./config.toml

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

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

[logger]                # настройка логгера
    mode = "prod"       # режим (prod или dev или debug)
    enable = true       # активация логгера
    timestamp = true    # выводить время лога (true или false)
    type = true         # выводить тип лога (true или false)
    [logger.file]       # настройка файлового логгера
        mode = "prod"               # режим (prod или dev или debug)
        enable = false              # активация логгера
        timestamp = false           # выводить время лога (true или false)
        type = true                 # выводить тип лога (true или false)
        file_prefix = "_http_"      # префикс для файлов логов
        file_postfix = ".logs"      # постфикс для файлов логов
        folder_path = "logs"        # папка для файлов логов
        logs_buffer = 5             # буффер сообщений
        flush_interval = 3          # интервал записи в секундах
        size = "1mb"                # размер одного файла (mb, kb или b)
        codec = "text"              # тип записи (text или json)
        [logger.file.keys]          # дополнительные ключи для логов
            key1 = "key1-val"
            key2 = "key2-val"

[cron]                              # настройки крона
    interval = "1 1 * * * *"        # интервал очистки
    time_zone = "Europe/Moscow"     # часовой пояс

[inspector]                         # настройка инспектора
    folders = [                     # папка для сканирования
        "logs"
    ]              
    regexp = [                      # список регулярных выражений
        "bad_text\\.(js|json)$"
    ]

[[notifications]]
    enable = false                          # активация выхода
    name = "email"                          # имя выхода
    output_type = "email"                   # тип выхода
    host = "smtp.localhost"                 # адрес сервера
    port = 465                              # порт сервера
    from = "[email protected]"   # почта отправителя
    to = ""                                 # адресаты
    #cc = ""                                # адресаты для копии (НЕ ОБЯЗАТЕЛЬНО)
    #bcc = ""                               # адресаты для скрытой копии (НЕ ОБЯЗАТЕЛЬНО)
    subject = "file inspector"              # тема письма
    secure = false                          # использовать TLS
    ignore_tls = false                      # игнорировать TLS сервера
    attempts = 2                            # количество попыток
    attempt_interval = 10                   # интервал повтора попытки при неудачи
    [notifications.auth]                                                # авторизация для прокси сервера (НЕ ОБЯЗАТЕЛЬНО)
        type = "login"                                                  # тип авторизации (login или oauth2)
        username = "mikeymike"                                          # пользователь прокси
        password = "rapunz3l"                                           # пароль к прокси
        client_id = "000000000000-xxx0.apps.googleusercontent.com"      # идентификатор клиента, только oauth2 (НЕ ОБЯЗАТЕЛЬНО)
        client_secret = "XxxxxXXxX0xxxxxxxx0XXxX0"                      # секрет, только oauth2 (НЕ ОБЯЗАТЕЛЬНО)
        refresh_token = "1/XXxXxsss-xxxXXXXXxXxx0XXXxxXXx0x00xxx"       # токен обновление, только oauth2 (НЕ ОБЯЗАТЕЛЬНО)
        access_token = "ya29.Xx_XX0xxxxx-xX0X0XxXXxXxXXXxX0x"           # токен доступа, только oauth2 (НЕ ОБЯЗАТЕЛЬНО)
        expires = 1484314697598                                         # время устаревания токена, только oauth2 (НЕ ОБЯЗАТЕЛЬНО)
        access_url = "xxxxxx"                                           # путь доступа
        service_client = "113600000000000000000"                        # идентификатор клиента сервиса
        private_key = "-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBg..."  # сертификат

Пример минимального конфигурационного файла config.toml:

[inspector]                         # настройка инспектора
    folders = [                     # папка для сканирования
        "logs"
    ]              
    regexp = [                      # список регулярных выражений
        "bad_text\\.(js|json)$"
    ]

[[notifications]]
    enable = true                       # активация выхода
    name = "email"                      # имя выхода
    output_type = "email"               # тип выхода
    host = "smtp.localhost"             # адрес сервера
    to = ""                             # адресаты