Skip to content

Instantly share code, notes, and snippets.

View tongyifan's full-sized avatar
🕊️
Feel free to contact me

Yifan Tong tongyifan

🕊️
Feel free to contact me
  • Alibaba
  • Hangzhou, China
View GitHub Profile
@steveyiyo
steveyiyo / cf-worker-b2.js
Last active February 24, 2024 02:58
Cloudflare Worker 搭配 Backblaze B2
'use strict';
const b2Domain = ''; //你要在Cloudflare上綁定的Backblaze網域
const b2Bucket = ''; //Backblaze B2的存儲桶名稱
const b2UrlPath = `/file/${b2Bucket}/`;
addEventListener('fetch', event => {
return event.respondWith(fileReq(event));
});
// define the file extensions we wish to add basic access control headers to
const corsFileTypes = ['png', 'jpg', 'gif', 'jpeg', 'webp'];