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

deploy-to-yandex-object-storage

v0.2.0

Published

Деплой сборок в Yandex Cloud Object Storage с поддержкой очистки bucket

Downloads

6

Readme

Deploy to Yandex Object Storage

Deploy static files to Yandex Cloud Object Storage with automatic bucket cleanup.

npm version License: MIT

Installation

npm install deploy-to-yandex-object-storage

Usage

Environment Variables

Set the following environment variables:

# Using environment variables
YANDEX_CLOUD_ACCESS_KEY_ID="your-key-id"
YANDEX_CLOUD_SECRET_ACCESS_KEY="your-secret-key"
YANDEX_CLOUD_BUCKET="my-bucket"
YANDEX_CLOUD_ENDPOINT="https://storage.yandexcloud.net"
YANDEX_CLOUD_REGION="ru-central1"
YANDEX_CLOUD_DIST_PATH="./dist"

Deploy

# Deploy using environment variables
npx deploy-to-yandex-object-storage

# Deploy using CLI flags (overrides env variables)
npx deploy-to-yandex-object-storage \
  --access-key-id "your-key-id" \
  --secret-key "your-secret-key" \
  --bucket "my-bucket" \
  --endpoint "https://storage.yandexcloud.net" \
  --region "ru-central1" \
  --dist "./build"

# Or install globally
npm install -g deploy-to-yandex-object-storage
deploy-to-yandex-object-storage

Configuration

| Variable | CLI Flag | Default | Description | | -------------------------------- | ----------------- | ---------- | ---------------------------------------------------------------- | | YANDEX_CLOUD_ACCESS_KEY_ID | --access-key-id | - | ID ключа доступа к Yandex Cloud | | YANDEX_CLOUD_SECRET_ACCESS_KEY | --secret-key | - | Секретный ключ доступа к Yandex Cloud | | YANDEX_CLOUD_BUCKET | --bucket | - | Имя бакета для деплоя | | YANDEX_CLOUD_ENDPOINT | --endpoint | - | Endpoint Object Storage (обычно https://storage.yandexcloud.net) | | YANDEX_CLOUD_REGION | --region | - | Регион (например, ru-central1) | | YANDEX_CLOUD_STORAGE_CLASS | --storage-class | STANDARD | Класс хранилища: STANDARD, COLD или ICE | | YANDEX_CLOUD_SKIP_CLEANUP | --no-clean | false | Пропустить очистку бакета перед деплоем | | YANDEX_CLOUD_DIST_PATH | --dist | dist | Путь к директории с файлами для деплоя | | YANDEX_CLOUD_DRY_RUN | --dry-run | false | Режим предпросмотра без фактической загрузки | | YANDEX_CLOUD_VERBOSE | --verbose | false | Детальное логирование операций |

Priority: CLI flags > Environment variables > Default values

Advanced Options

Skip Bucket Cleanup

By default, the tool cleans the bucket before deployment. To skip this:

npx deploy-to-yandex-object-storage --no-clean

Storage Class

Specify the storage class for uploaded files:

npx deploy-to-yandex-object-storage --storage-class COLD

Available values: STANDARD, COLD, ICE

File Filtering

Filter files using glob patterns:

# Include only specific files
npx deploy-to-yandex-object-storage --include "*.html,*.css,*.js"

# Exclude specific files
npx deploy-to-yandex-object-storage --exclude "*.map,*.txt"

# Combine include and exclude
npx deploy-to-yandex-object-storage --include "*.html,*.css,*.js" --exclude "*.map"

Note: Use comma-separated values for multiple patterns.

Features

  • Automatic bucket cleanup before deployment (optional with --no-clean)
  • Automatic MIME type detection for common file types
  • Brotli and gzip compression support
  • Cache-Control headers for optimal performance
  • Storage class support (STANDARD, COLD, ICE)
  • File filtering with glob patterns (include/exclude)
  • Simple CLI interface
  • Dry-run mode for testing without actual deployment
  • Verbose logging for debugging

CI/CD Examples

GitHub Actions

name: Deploy to Yandex Cloud

on:
  push:
    branches: [main]

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Setup Node.js
        uses: actions/setup-node@v4
        with:
          node-version: "22"

      - name: Install dependencies
        run: npm ci

      - name: Build
        run: npm run build

      - name: Deploy to Yandex Cloud
        env:
          YANDEX_CLOUD_ACCESS_KEY_ID: ${{ secrets.YANDEX_CLOUD_ACCESS_KEY_ID }}
          YANDEX_CLOUD_SECRET_ACCESS_KEY: ${{ secrets.YANDEX_CLOUD_SECRET_ACCESS_KEY }}
          YANDEX_CLOUD_BUCKET: my-bucket
          YANDEX_CLOUD_ENDPOINT: https://storage.yandexcloud.net
          YANDEX_CLOUD_REGION: ru-central1
        run: npx deploy-to-yandex-object-storage

GitLab CI

deploy:
  image: node:22
  script:
    - npm ci
    - npm run build
    - npx deploy-to-yandex-object-storage
  only:
    - main
  variables:
    YANDEX_CLOUD_ACCESS_KEY_ID: $YANDEX_CLOUD_ACCESS_KEY_ID
    YANDEX_CLOUD_SECRET_ACCESS_KEY: $YANDEX_CLOUD_SECRET_ACCESS_KEY
    YANDEX_CLOUD_BUCKET: my-bucket
    YANDEX_CLOUD_ENDPOINT: https://storage.yandexcloud.net
    YANDEX_CLOUD_REGION: ru-central1

CircleCI

version: 2.1
jobs:
  deploy:
    docker:
      - image: cimg/node:22.0
    steps:
      - checkout
      - run: npm ci
      - run: npm run build
      - run: npx deploy-to-yandex-object-storage
        environment:
          YANDEX_CLOUD_ACCESS_KEY_ID: ${YANDEX_CLOUD_ACCESS_KEY_ID}
          YANDEX_CLOUD_SECRET_ACCESS_KEY: ${YANDEX_CLOUD_SECRET_ACCESS_KEY}
          YANDEX_CLOUD_BUCKET: my-bucket
          YANDEX_CLOUD_ENDPOINT: https://storage.yandexcloud.net
          YANDEX_CLOUD_REGION: ru-central1

Contributing

Contributions, issues and feature requests are welcome! Feel free to check issues page.

Show your support

Give a ⭐️ if this project helped you!

License

MIT © Andrey Pakhomov