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

@agnostic-cloud/migrate

v0.2.0

Published

Multi-cloud migration utilities for copying data between providers and verifying integrity

Readme

@agnostic-cloud/migrate

Utility functions for cross-cloud object migration between AWS S3, GCP GCS, and Azure Blob Storage.

Installation

npm install @agnostic-cloud/migrate @agnostic-cloud/storage

Note on Peer Dependencies: Provider SDKs are optional peer dependencies. You only need to install the SDKs for the source and destination cloud providers involved in your migration.

Supported Cloud Provider SDK Versions

| Cloud Provider | Required SDK Package | Current / Tested Version | Installation Command | |---|---|---|---| | AWS | @aws-sdk/client-s3 | ^3.1095.0 | npm install @aws-sdk/client-s3 | | GCP | @google-cloud/storage | ^7.21.0 | npm install @google-cloud/storage | | Azure | @azure/storage-blob@azure/identity | ^12.32.0^4.13.1 | npm install @azure/storage-blob @azure/identity |

Usage

import { copyObject, verifyIntegrity } from '@agnostic-cloud/migrate'

// Copy from S3 to GCS
const result = await copyObject(
  { cloud: 'aws', region: 'us-east-1' },
  's3://source-bucket/path/to/file.txt',
  { cloud: 'gcp', region: 'us-central1' },
  'gs://dest-bucket/path/to/file.txt',
)

console.log(`Transferred ${result.bytesTransferred} bytes`)

// Verify integrity after migration
const checksum = 'abc123...'
const valid = await verifyIntegrity(
  { cloud: 'gcp', region: 'us-central1' },
  'gs://dest-bucket/path/to/file.txt',
  checksum,
  'sha256',
)

API

copyObject(sourceConfig, sourceUrl, destConfig, destUrl): Promise<CopyResult>

Copies an object from any cloud provider to any other cloud provider.

| Parameter | Type | Description | |-----------|------|-------------| | sourceConfig | StorageConfig | Source cloud configuration | | sourceUrl | string | Source object URL (s3://bucket/key, gs://bucket/key, azblob://container/key) | | destConfig | StorageConfig | Destination cloud configuration | | destUrl | string | Destination object URL |

verifyIntegrity(config, url, expectedChecksum, algorithm?): Promise<boolean>

Verifies object integrity by computing and comparing a checksum.

| Parameter | Type | Description | |-----------|------|-------------| | config | StorageConfig | Cloud configuration | | url | string | Object URL | | expectedChecksum | string | Expected hex checksum | | algorithm | HashAlgorithm | 'md5' | 'sha1' | 'sha256' | 'sha512' (default: 'md5') |

Documentation

Full docs: https://develasquez.github.io/-agnostic-cloud/docs/next/packages/migrate

API reference: https://develasquez.github.io/-agnostic-cloud/docs/next/api/@agnostic-cloud/migrate