1
- # BUNPKG
1
+ ---
2
+ layout : landing
3
+ ---
2
4
3
- > bunpkg is an alternative for, powered by bun! friendly for private deploy and file cache supported.
5
+ import { HomePage } from 'vocs/components'
6
+ import { MetaBrowser } from '../components/MetaBrowser'
7
+ import { Codebox } from '../components/Codebox'
4
8
5
- ## Diff unpkg
9
+ <HomePage.Root>
10
+ <HomePage.Tagline>bunpkg 是受到 [ unpkg] ( https://unpkg.com ) 启发而开发的一个 NPM CDN 加速服务器, <br />
11
+ 自部署更加友好, 并提供了额外本地文件缓存等功能</HomePage.Tagline>
12
+ <HomePage.Tagline>bunpkg is an alternative for unpkg. <br />but friendly for self-host deploy and file cache supported </HomePage.Tagline>
13
+ </HomePage.Root>
14
+
15
+ - 💎 本地文件缓存: 压缩包(tgz) 和访问过的文件会使用 LRU 策略进行缓存, 并使用 sqlite 进行持久化
16
+ > Local File Cache: tarboll and visited file LRU cache, powered by sqlite
17
+ - 🌈 支持私有仓库: 通过自定义的 ` Authorization: Bearer ${TOKEN} ` 来支持私有 NPM 仓库认证
18
+ > Private Package Supported: Agent with npmAuthToken for private npm packages.
19
+ - 🚀 运行在 [ Bun] ( https:bun.sh ) 环境中, 超快乐!
20
+ > Powered by [ Bun] ( https://bun.sh ) ! is fast!
21
+
22
+ ## 演练场 LiveDemo
23
+
24
+ <MetaBrowser ></MetaBrowser >
25
+
26
+ ## 使用示例 Usages
27
+
28
+ ### /npm/package@version/file
29
+
30
+ <Codebox title =" 加载托管在 npm 上的任意文件 " >
31
+ https://bunpkg.com/npm/package@version/file
32
+ </Codebox >
33
+
34
+ <Codebox title =" 举个例子 " >
35
+ https://bunpkg.com/npm/[email protected] /dist/jquery.min.js
36
+ </Codebox >
37
+
38
+ <Codebox title =" 版本简写: 使用 range 代替具体的版本 " >
39
+ https://bunpkg.com/npm/[email protected] /dist/jquery.min.js
40
+ https://bunpkg.com/npm/jquery@3/dist/jquery.min.js
41
+ </Codebox >
42
+
43
+ <Codebox title =" 省略版本: 将会获取 @latest, 生产环境不推荐使用 " >
44
+ https://bunpkg.com/npm/jquery/dist/jquery.min.js
45
+ </Codebox >
46
+ <Codebox title =" 省略文件名称: 会跟据 package.json 查找口文件, 生产环境不推荐使用 " >
47
+ https://bunpkg.com/npm/jquery
48
+ </Codebox >
49
+
50
+ ### /meta/package@version
51
+
52
+ 获取包的文件列表和对应版本的 package.json
53
+
54
+ <Codebox title =" 举个例子 " >
55
+ https://bunpkg.com/meta/[email protected]
56
+ https://bunpkg.com/meta/jquery@3
57
+ https://bunpkg.com/meta/jquery
58
+ </Codebox >
59
+
60
+ ### /esm/package@version/file
61
+
62
+ !IMOPRTANT 这是一个非常实验性的功能,避免在生产环境中使用
63
+
64
+ 如果不是 js 代码, 将会回退到 npm 版本
65
+
66
+ <Codebox title =" 使用 ESM 格式加载托管在 npm 上的文件 " >
67
+ https://bunpkg.com/esm/package@version/file
68
+ </Codebox >
69
+
70
+ <Codebox title =" 举个例子 " >
71
+ https://bunpkg.com/esm/[email protected] /dist/index.mjs
72
+ </Codebox >
73
+
74
+ <Codebox title =" 版本简写: 使用 range 代替具体的版本 " >
75
+ https://bunpkg.com/esm/[email protected] /dist/index.mjs
76
+ https://bunpkg.com/esm/ofetch@1/dist/index.mjs
77
+ </Codebox >
78
+
79
+ <Codebox title =" 省略版本: 将会获取 @latest, 生产环境不推荐使用 " >
80
+ https://bunpkg.com/esm/ofetch/dist/index.mjs
81
+ </Codebox >
82
+
83
+ <Codebox title =" 省略文件名称: 会跟据 package.json 查找口文件, 生产环境不推荐使用 " >
84
+ https://bunpkg.com/esm/ofetch
85
+ </Codebox >
86
+
87
+ ### 请求参数 Query Parameters
88
+
89
+ ` ?purge `
90
+
91
+ 删除当前 url 路径的缓存
92
+ <Codebox title =" 举个例子 " >
93
+ https://bunpkg.com/esm/[email protected] /dist/index.mjs?purge
94
+ </Codebox >
95
+
96
+ ## 与 UNPKG 的对比
6
97
7
98
| feture | bunpkg | unpkg |
8
99
| ----------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | -------- |
9
100
| 302 supported, example [ npmmirror.com] ( https://registry.npmmirror.com/react/-/react-18.2.0.tgz ) | ✅ | 🚫 |
10
101
| Local File Cache | ✅ does nginx better, aha? | 🚫 |
11
102
| private Authorization header | ✅ | 🚫 |
12
- | Browser UI | 🚫 | ✅ |
13
103
| esm | ✅ by [ Bun.Transpiler] ( https://bun.sh/docs/api/transpiler#scanimports ) | ✅ babel |
14
104
15
- ## .env
105
+ ### HTTP 缓存表现 HTTP Cache Behavior
106
+
107
+ CDN 根据包含 npm 包版本的永久 URL 缓存文件。这是因为 npm 不允许包作者覆盖已经以相同版本号发布的不同包。
16
108
17
- > maybe?: config file and persistence
109
+ > The CDN caches files based on their permanent URL, which includes the npm package version. This works because npm does not allow package authors to overwrite a package that has already been published with a different one at the same version number.
110
+
111
+ 浏览器被指示(通过 Cache-Control 标头)无限期(1 年)缓存资产。
112
+
113
+ > Browsers are instructed (via the Cache-Control header) to cache assets indefinitely (1 year).
114
+
115
+ 未指定包版本号的 URL 会重定向到指定包版本号的 URL。如果未指定版本,这是最新版本,如果给出了 semver 版本,则是最大满意版本。重定向在 CDN 中缓存 10 分钟,在浏览器中缓存 1 分钟。
116
+
117
+ > URLs that do not specify a package version number redirect to one that does. This is the latest version when no version is specified, or the maxSatisfying version when a semver version is given. Redirects are cached for 10 minutes at the CDN, 1 minute in browsers.
118
+
119
+ 如果您希望用户在您剪切新版本时能够使用最新版本,最好的策略是将版本号直接放在您的安装说明中的 URL 中。这也将更快地加载,因为我们不必解析最新版本并重定向它们。
120
+
121
+ > If you want users to be able to use the latest version when you cut a new release, the best policy is to put the version number in the URL directly in your installation instructions. This will also load more quickly because we won't have to resolve the latest version and redirect them.
122
+
123
+ ### 磁盘缓存表现 Disk Cache Behavior
124
+
125
+ 使用 CACHE_DIR=./cache 或重新映射 docker volumns /cache 来观察 tarboll 和文件缓存;sqlite 的文件缓存管理器,使用 LRU 算法;
126
+
127
+ > Use ` CACHE_DIR=./cache ` or remap docker volumns ` /cache ` to watch how tarboll and file cache; File Cache Manager by sqlite, with LRU algorithm;
128
+
129
+ tarboll 和文件对半共享的默认限制为 4Gib 。您可以通过配置更改它
130
+
131
+ > Default limit is ` 4Gib ` for tarboll and files shared. Your Can change it by Config
132
+
133
+ ## 配置项 Config
134
+
135
+ - .env
136
+
137
+ 默认值
18
138
19
139
``` bash
20
- NPM_REGISTRY_URL=https://registry.npmmirror.com/
21
140
PORT=4567
22
- HOST_NAME=127.0.0.1
23
- CORS_ORIGIN=*
24
- ORIGIN=
25
- CACHE_DIR=/cache
26
- CACHE_GIB=4
27
- NPM_AUTH_TOKEN=
141
+ # HOST=0.0.0.0
142
+ # CORS_ORIGIN=*
143
+ CACHE_DIR=./.cache
144
+ # CACHE_MAX_SIZE=4
145
+ NPM_REGISTRY=https://registry.npmmirror.com/
146
+ ESM_ORIGIN=https://bunpkg.com
147
+ # NPM_MAX_TGZ_SIZE=100
148
+ # NPM_AUTH_TOKEN=
149
+ # JWT_SECRET=
150
+ ```
151
+
152
+ - bun.config.ts
153
+
154
+ ``` ts
155
+ import path from " node:path" ;
156
+ import { cors } from " @elysiajs/cors" ;
157
+
158
+ export const BunPkgConfig = {
159
+ /** 服务器相关 */
160
+ server: {
161
+ /**
162
+ * 端口号
163
+ * @default process.env.PORT || 4567
164
+ */
165
+ port: 4567 ,
166
+ /**
167
+ * 主机名
168
+ * @default process.env.HOST || '0.0.0.0'
169
+ */
170
+ // host: "0.0.0.0",
171
+ /**
172
+ * 跨域配置
173
+ * @default {origin: process.env.CORS_ORIGIN } || Paramaters<typeof cors[0]>
174
+ * @docuemnt see more https://elysiajs.com/plugins/cors.html#config
175
+ */
176
+ cors: {
177
+ origin: " *" ,
178
+ },
179
+ },
180
+ /** 缓存配置 */
181
+ cache: {
182
+ /**
183
+ * 缓存硬盘占用空间最大值 (Gib)
184
+ * @default process.env.CACHE_MAX_SIZE || 4
185
+ */
186
+ maxSize: 4 ,
187
+ /**
188
+ * 磁盘缓存目录位置
189
+ * @default process.env.CACHE_DIR || '/cache'
190
+ */
191
+ dir: " /cache" ,
192
+ },
193
+ /** NPM 配置 */
194
+ npm: {
195
+ /**
196
+ * 上游 NPM 源地址
197
+ * @default process.env.NPM_REGISTRY || 'https://registry.npmjs.org/'
198
+ */
199
+ registry: " https://registry.npmjs.org/" ,
200
+ /**
201
+ * 私有 npm 认证头
202
+ * Authorization: Bearer ${authToken}
203
+ */
204
+ // authToken: "",
205
+ /**
206
+ * 支持最大 npm tgz 压缩包尺寸 (mib)
207
+ * @default 100 (Mib)
208
+ * @default process.env.NPM_MAX_TGZ_SIZE || 100
209
+ **/
210
+ maxTgzSize: 100 ,
211
+ },
212
+ esm: {
213
+ /**
214
+ * ESM 前缀配置
215
+ * @default process.env.ESM_ORIGIN
216
+ */
217
+ origin: " " ,
218
+ },
219
+ /**
220
+ * 是否开启 JWT 认证, 只有有当前配置项并添加了 secret 的情况下才会开启
221
+ * seemore https://elysiajs.com/plugins/jwt.html
222
+ */
223
+ jwt: {
224
+ // /**
225
+ // * 认证密钥
226
+ // * @default process.env.JWT_SECRET
227
+ // **/
228
+ // secret: "",
229
+ },
230
+ };
28
231
```
29
232
30
233
## docker
31
234
32
235
``` bash
33
- # docker mode env is limited to
34
- # NPM_REGISTRY_URL=https://registry.npmmirror.com/
35
- # CORS_ORIGIN=*
36
- # ORIGIN=*
37
- # CACHE_GIB=4
38
- # NPM_AUTH_TOKEN=
39
236
docker run -i -t -p 4567:4567 chaogpt/bunpkg
40
- docker run --env-file .env -i -t -p 4567:4567 -v /cache:./cache chaogpt/bunpkg
237
+ docker run --env-file .env \
238
+ -i -t -p 4567:4567 \
239
+ -v /cache:./cache \
240
+ -v bunpkg.config.ts:/app/bunpkg.config.ts chaogpt/bunpkg
41
241
```
42
242
43
243
## Roadmap
44
244
45
245
- [x] Persistence Cache (by sqlite)
46
- - [ ] More Private Config , like [ esm.sh ] ( https://github.com/esm-dev/esm.sh/blob/main/config.example.jsonc )
246
+ - [x] Browser UI
47
247
- [ ] Live Config Manager
48
248
- [ ] Data Statistics
49
- - [ ] Browser UI
50
249
51
250
## Dev
52
251
@@ -56,10 +255,6 @@ bun dev
56
255
# open http://localhost:4567
57
256
```
58
257
59
- ## ScreenShot
60
-
61
- ![ bunpkg] ( ./bunpkg.png )
62
-
63
258
## Powered by
64
259
65
260
- [ Elysia] ( https://elysiajs.com/ )
0 commit comments