0.1.9 • Published 3 years ago

verdaccio-migrate v0.1.9

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

verdaccio-migrate

Migrate all packages in a verdaccio to another npm registry with npm publish.

Install

npm i verdaccio-migrate

Usage

import verdaccioMigrate from "verdaccio-migrate";

const from = "https://registry.npmjs.org/"; // source registry url
const to = "http://localhost:4873/"; // target registry url

verdaccioMigrate(from, to).then(
  ({
    succeeded, // ['@my/pkg1@0.0.1', '@my/pkg1@0.0.2']
    failed,
    skipped,
  }) => {
    // migrated
  }
);

Cli Usage

npx verdaccio-migrate --from=https://registry.npmjs.org/ --to=http://localhost:4873/

Details

For more details, checkout npm-migrate-all.

0.1.9

3 years ago

0.1.8

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.1

3 years ago