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

@serve.zone/cloudly

v5.3.0

Published

A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.

Readme

@serve.zone/cloudly 🚀

Multi-cloud orchestration made simple. Manage containerized applications across cloud providers with Docker Swarmkit, featuring web dashboards, CLI tools, and powerful APIs.

🎯 What is Cloudly?

Cloudly is your command center for multi-cloud infrastructure. It abstracts away the complexity of managing resources across different cloud providers while giving you the power and flexibility you need for modern DevOps workflows.

✨ Key Features

  • 🌐 Multi-Cloud Management - Seamlessly orchestrate resources across Cloudflare, Hetzner, DigitalOcean and more
  • 🐳 Docker Swarmkit Integration - Native container orchestration with production-grade reliability
  • 🔐 Secret Management - Secure handling of credentials, API keys, and sensitive configuration
  • 🎨 Web Dashboard - Beautiful, responsive UI built with modern web components
  • ⚡ CLI & API - Full programmatic control through TypeScript/JavaScript APIs and command-line tools
  • 🔒 SSL/TLS Automation - Automatic certificate provisioning via Let's Encrypt
  • 📊 Comprehensive Logging - Built-in log aggregation and monitoring capabilities
  • 🔄 Task Scheduling - Automated workflows and background job management

🚀 Quick Start

Installation

# Install the main package
pnpm add @serve.zone/cloudly

# Or install the CLI globally
pnpm add -g @serve.zone/cli

# Or just the API client
pnpm add @serve.zone/api

Basic Setup

import { Cloudly } from '@serve.zone/cloudly';

// Initialize Cloudly with your configuration
const cloudly = new Cloudly({
  cfToken: process.env.CLOUDFLARE_TOKEN,
  hetznerToken: process.env.HETZNER_TOKEN,
  environment: 'production',
  letsEncryptEmail: '[email protected]',
  publicUrl: 'cloudly.example.com',
  publicPort: 443,
  mongoDescriptor: {
    mongoDbUrl: process.env.MONGODB_URL,
    mongoDbName: 'cloudly',
    mongoDbUser: process.env.MONGODB_USER,
    mongoDbPass: process.env.MONGODB_PASS,
  }
});

// Start the platform
await cloudly.start();
console.log('🎉 Cloudly is running!');

🏗️ Architecture

Cloudly follows a modular architecture with clear separation of concerns:

┌─────────────────────────────────────────────┐
│             Web Dashboard (UI)              │
├─────────────────────────────────────────────┤
│          API Layer (TypedRouter)            │
├─────────────────────────────────────────────┤
│              Core Managers                  │
│  ┌─────────┐ ┌─────────┐ ┌─────────┐        │
│  │ Cluster │ │  Image  │ │ Secret  │ ...    │
│  └─────────┘ └─────────┘ └─────────┘        │
├─────────────────────────────────────────────┤
│            Cloud Connectors                 │
│  ┌──────────┐ ┌─────────┐ ┌──────────----┐  │
│  │Cloudflare│ │ Hetzner │ │ DigitalOcean │  │
│  └──────────┘ └─────────┘ └──────────----┘  │
└─────────────────────────────────────────────┘

💻 Core Components

🔧 Managers

  • AuthManager - Identity and access management
  • ClusterManager - Docker Swarm cluster orchestration
  • ImageManager - Container image lifecycle management
  • SecretManager - Secure credential storage and distribution
  • ServerManager - Cloud server provisioning and management
  • TaskManager - Background job scheduling and execution

🔌 Connectors

  • CloudflareConnector - DNS, CDN, and edge services
  • LetsencryptConnector - Automatic SSL certificate provisioning
  • MongodbConnector - Database persistence layer
  • HetznerConnector - German cloud infrastructure
  • DigitalOceanConnector - Developer-friendly cloud resources

📚 Usage Examples

Managing Clusters

// Create a new cluster
const cluster = await cloudly.clusterManager.createCluster({
  name: 'production-cluster',
  region: 'eu-central',
  nodeCount: 3
});

// Deploy a service
await cluster.deployService({
  name: 'api-service',
  image: 'myapp:latest',
  replicas: 3,
  ports: [{ published: 80, target: 3000 }]
});

Secret Management

// Create a secret group
const secretGroup = await cloudly.secretManager.createSecretGroup({
  name: 'api-credentials',
  secrets: [
    { key: 'API_KEY', value: process.env.API_KEY },
    { key: 'DB_PASSWORD', value: process.env.DB_PASSWORD }
  ]
});

// Create a bundle for deployment
const bundle = await cloudly.secretManager.createSecretBundle({
  name: 'production-secrets',
  secretGroups: [secretGroup]
});

DNS Management

// Create DNS records via Cloudflare
const record = await cloudly.cloudflareConnector.createDNSRecord(
  'example.com',
  'api.example.com', 
  'A',
  '192.168.1.1'
);

Web Dashboard

import { html } from '@design.estate/dees-element';

// Create a custom dashboard view
const dashboard = html`
  <cloudly-dashboard>
    <cloudly-view-clusters></cloudly-view-clusters>
    <cloudly-view-dns></cloudly-view-dns>
    <cloudly-view-images></cloudly-view-images>
  </cloudly-dashboard>
`;

document.body.appendChild(dashboard);

🛠️ CLI Usage

The CLI provides quick access to all Cloudly features:

# Login to your Cloudly instance
servezone login --url https://cloudly.example.com

# List clusters
servezone clusters list

# Deploy a service
servezone deploy --cluster prod --image myapp:latest

# Manage secrets
servezone secrets create --name api-key --value "secret123"

# View logs
servezone logs --service api-service --follow

📦 Package Exports

This monorepo publishes multiple packages:

  • @serve.zone/cloudly - Main orchestration platform
  • @serve.zone/api - TypeScript/JavaScript API client
  • @serve.zone/cli - Command-line interface
  • @serve.zone/interfaces - Shared TypeScript interfaces

🔒 Security Features

  • End-to-end encryption for secrets
  • Role-based access control (RBAC)
  • Automatic SSL/TLS certificate management
  • Secure token-based authentication
  • Audit logging for compliance

🚢 Production Ready

Cloudly is battle-tested in production environments managing:

  • High-traffic web applications
  • Microservice architectures
  • CI/CD pipelines
  • Data processing workloads
  • Real-time communication systems

🤝 Development

# Clone the repository
git clone https://gitlab.com/servezone/private/cloudly.git

# Install dependencies
pnpm install

# Run tests
pnpm test

# Build the project
pnpm build

# Start development mode
pnpm watch

📖 Documentation

For detailed documentation, API references, and guides, visit our documentation site.

License and Legal Information

This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the license file within this repository.

Please note: The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.

Trademarks

This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.

Company Information

Task Venture Capital GmbH
Registered at District court Bremen HRB 35230 HB, Germany

For any legal inquiries or if you require further information, please contact us via email at [email protected].

By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.