Bun 重塑了 JavaScript/TypeScript 工具鏈,集開發,測試,運行時,包管理,打包器於一體,使用 Zig 開發,性能明顯高於 Nodejs
國內網絡環境導致 Bun 下載包時會比較慢,目前沒有找到 Bun 使用代理下載包的相關配置,可以通過配置 Bun 從國內 npm registry 鏡像下載,加快下載速度,提高開發體驗
在用戶根目錄創建.bunfig.toml
文件,添加如下內容即可,https://registry.npmmirror.com
是阿里的鏡像網站
[install]
registry = "https://registry.npmmirror.com"