迁移npm包到nexus

背景:外包项目完工后,需要搭建客户开发环境,因此需要将对应的npm开发包迁移到客户nexus

步骤:

1.先从前端工程中的yarn.lock文件中获取组件列表

2.使用python脚本下载组件到本地

3.使用pythons脚本上传npm包到nexus仓库

第2不脚本如下:

python 复制代码
# -*- coding: utf-8 -*-
import os
import requests
import re
# 设置下载文件保存目录
download_dir = "C:\\Users\\onlyo\\Desktop\\LJ\\npmdowlod\\pkg"

# 从文件中读取 URL 列表
url_file = "C:\Users\\onlyo\\Desktop\\LJ\\npmdowlod\\url.txt"

# 创建下载目录(如果不存在)
#os.makedirs(download_dir, exist_ok=True)

# 打开 URL 列表文件
with open(url_file, "r") as file:
    print("Hello, World!1")
    # 逐行读取 URL
    for line in file:
        print(line)
        # 提取 URL 链接部分
        #url = line.strip().split()[1].strip('"')
        url = re.search(r'"(https?://.*?)"', line).group(1)
        print("读取到的url为:"+str(url))
        # 检查 URL 是否以 "https://" 开头
        if url.startswith("http://"):
            # 提取文件名
            filename = url.rsplit("/", 1)[-1]
            #last_slash_index = url.rfind("/")
           # hash_index = url.rfind("\"")

            # 提取子字符串
            #filename = url[last_slash_index + 1 : hash_index]
            # 下载文件
            print("下载文件:", filename)
            response = requests.get(url)
            file_path = os.path.join(download_dir, filename)
            with open(file_path, "wb") as output_file:
                output_file.write(response.content)

第三步脚本如下:

python 复制代码
# -*- coding: utf-8 -*-
import os  
import requests  
import glob  
# 远程Nexus仓库的URL和认证信息  
nexus_url = 'http://192.168.2.230:8081/service/rest/v1/components'  
headers = {  
    'accept': 'application/json',  
    'Content-Type': 'multipart/form-data'  
}  
auth = ('admin', 'admin')  # 替换为你的Nexus仓库的用户名和密码  
  
# 本地npm包的路径和要上传的远程仓库名  
local_path = 'D:\\lj2\\'  # 替换为包含.tgz文件的本地文件夹路径  
remote_repo = 'npm-imbr-hosted'  # 替换为要上传到的远程仓库名称  
  
# 遍历本地文件夹中的.tgz文件  
for tgz_file in glob.glob(os.path.join(local_path, '*.tgz')): 
    print('开始上传'+tgz_file)
    auth = ('admin', 'admin')  # 替换为你的Nexus仓库的用户名和密码    
    url = 'http://192.168.2.230:8081/service/rest/v1/components?repository=npm-imbr-hosted'  
    files = {'file': open(tgz_file, 'rb')}  # 这里替换为你的文件路径  
    response = requests.post(url,auth=auth, files=files)  
    print('完成')
    print(response.text)  # 打印服务器响应
相关推荐
m0_748236112 分钟前
Calcite Web 项目常见问题解决方案
开发语言·前端·rust
Watermelo61715 分钟前
详解js柯里化原理及用法,探究柯里化在Redux Selector 的场景模拟、构建复杂的数据流管道、优化深度嵌套函数中的精妙应用
开发语言·前端·javascript·算法·数据挖掘·数据分析·ecmascript
m0_7482489416 分钟前
HTML5系列(11)-- Web 无障碍开发指南
前端·html·html5
m0_7482356128 分钟前
从零开始学前端之HTML(三)
前端·html
一个处女座的程序猿O(∩_∩)O2 小时前
小型 Vue 项目,该不该用 Pinia 、Vuex呢?
前端·javascript·vue.js
hackeroink5 小时前
【2024版】最新推荐好用的XSS漏洞扫描利用工具_xss扫描工具
前端·xss
迷雾漫步者7 小时前
Flutter组件————FloatingActionButton
前端·flutter·dart
向前看-7 小时前
验证码机制
前端·后端
燃先生._.8 小时前
Day-03 Vue(生命周期、生命周期钩子八个函数、工程化开发和脚手架、组件化开发、根组件、局部注册和全局注册的步骤)
前端·javascript·vue.js