写个jsdelivr上传Github文件htm
时间: 2024-01-21 08:40:38 浏览: 331
l文件的示例:
1. 首先,在Github上创建一个新的仓库,用于存放html文件。
2. 在本地电脑上创建一个文件夹,用于存放html文件。
3. 在文件夹中创建一个名为index.html的文件,并编写你的html代码。
4. 打开终端或命令行窗口,进入到该文件夹。
5. 初始化git仓库并添加文件:
```
git init
git add index.html
git commit -m "first commit"
```
6. 在Github仓库中添加远程仓库,将本地仓库与Github仓库关联起来:
```
git remote add origin https://github.com/your_username/your_repository.git
```
7. 将本地仓库的代码推送到Github仓库中:
```
git push -u origin master
```
8. 登录jsdelivr官网(https://www.jsdelivr.com/),点击“Start Uploading”按钮。
9. 在“Upload Files”页面中,点击“Choose File”按钮,选择你的index.html文件。
10. 点击“Upload”按钮,等待上传完成。
11. 在上传完成后,jsdelivr会生成一个访问链接,复制该链接。
12. 在浏览器中打开该链接,即可访问你的html页面。
相关问题
写个jsdelivr上传Github文件代码
以下是一个示例代码,可以将文件上传到 GitHub,并使用 jsDelivr 提供的 CDN 服务。
```javascript
const fetch = require('node-fetch');
const owner = 'your_github_username';
const repo = 'your_github_repository_name';
const token = 'your_github_personal_access_token';
// Upload file to GitHub
async function uploadToGitHub(filePath, content) {
const url = `https://api.github.com/repos/${owner}/${repo}/contents/${filePath}`;
const body = {
message: 'Add file via API',
content: Buffer.from(content).toString('base64')
};
const headers = {
Authorization: `Bearer ${token}`
};
const response = await fetch(url, {
method: 'PUT',
headers,
body: JSON.stringify(body)
});
const json = await response.json();
if (response.ok) {
console.log(`File uploaded to GitHub: ${json.content.html_url}`);
return json.content.sha;
} else {
console.error(`Failed to upload file to GitHub: ${JSON.stringify(json)}`);
return null;
}
}
// Get jsDelivr upload URL
async function getJsDelivrUrl(filePath, sha) {
const url = `https://data.jsdelivr.com/v1/package/gh/${owner}/${repo}@${sha}/${filePath}`;
const response = await fetch(url);
const json = await response.json();
if (response.ok && json.success) {
console.log(`jsDelivr upload URL: ${json.files[0].url}`);
return json.files[0].url;
} else {
console.error(`Failed to get jsDelivr upload URL: ${JSON.stringify(json)}`);
return null;
}
}
// Upload file to jsDelivr
async function uploadToJsDelivr(filePath, content) {
const sha = await uploadToGitHub(filePath, content);
if (sha) {
const url = await getJsDelivrUrl(filePath, sha);
if (url) {
const response = await fetch(url, {
method: 'PUT',
body: content
});
if (response.ok) {
console.log(`File uploaded to jsDelivr: ${url}`);
} else {
console.error(`Failed to upload file to jsDelivr: ${response.statusText}`);
}
}
}
}
// Example usage
uploadToJsDelivr('example.txt', 'Hello, world!');
```
在使用此代码之前,请确保您已经设置了 GitHub 个人访问令牌,并具有对您要上传文件的仓库的写入访问权限。您还应该替换代码中的 `your_github_username`,`your_github_repository_name` 和 `your_github_personal_access_token` 为您自己的值。
写个jsdelivr上传Github文件代码html
<!DOCTYPE html>
<html>
<head>
<title>JSDELIVR上传Github文件</title>
</head>
<body>
<h1>JSDELIVR上传Github文件</h1>
<form id="myForm">
<label for="fileInput">选择文件:</label>
<input type="file" id="fileInput" name="fileInput" required><br><br>
<label for="version">版本号:</label>
<input type="text" id="version" name="version" required><br><br>
<label for="vendor">厂商:</label>
<input type="text" id="vendor" name="vendor" required><br><br>
<label for="project">项目名称:</label>
<input type="text" id="project" name="project" required><br><br>
<label for="fileName">文件名:</label>
<input type="text" id="fileName" name="fileName" required><br><br>
<button type="submit" onclick="uploadFile()">上传文件</button>
</form>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script>
function uploadFile() {
const fileInput = document.getElementById('fileInput');
const version = document.getElementById('version').value;
const vendor = document.getElementById('vendor').value;
const project = document.getElementById('project').value;
const fileName = document.getElementById('fileName').value;
const formData = new FormData();
formData.append('file', fileInput.files[0]);
axios.post(`https://api.jsdelivr.com/gh/${vendor}/${project}@${version}/${fileName}`, formData, {
headers: {
'Content-Type': 'multipart/form-data'
}
})
.then(response => {
console.log(response);
alert("上传成功!");
})
.catch(error => {
console.log(error);
alert("上传失败!");
});
}
</script>
</body>
</html>
阅读全文
相关推荐















