1

I need to migrate npm packages from Proget npm private feed to Azure Artifacts. On ProGet server i have folder with thousands of packages, and nobody knows, which of them private. packages.json file is missing. I tried npm init to create packages.json, but it fails on scoped packages. Any ideas, how to get npm packages from root folder and put all of them to private feed?

Oleg Usmanov
  • 43
  • 2
  • 7

1 Answers1

0

Does ProGet have the npm packages at .tar.gz files? Or only as expanded files? If .tar.gz, you could download all of those and then upload them all to Azure Artifacts by writing a script that called npm publish on each .tar.gz.

Alex Mullans
  • 1,699
  • 2
  • 17
  • 34