0.1.9 • Published 2 years ago

verdaccio-migrate v0.1.9

Weekly downloads
-
License
MIT
Repository
github
Last release
2 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

2 years ago

0.1.8

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.1

2 years ago