Skip to content

Instantly share code, notes, and snippets.

View MalteHei's full-sized avatar
🕴️

Malte MalteHei

🕴️
View GitHub Profile
@MalteHei
MalteHei / migrate-npm-repo.py
Last active February 12, 2023 19:38 — forked from birolemekli/movedNexusRepo.py
Nexus NPM Migration
import requests
from requests.auth import HTTPBasicAuth
import os
import time
from getpass import getpass
import pprint as pp
currentNexus = "https://old-nexus.example.com"
newNexus = "https://new-nexus.example.com"
currentRepositoryName = "npm-old-private"