Skip to content

第50期 44 week share 2025-10-28

本周我读到有趣的文章

1、photon

TIP

Next-generation infrastructure for deploying any JavaScript server.

2、Ant-Card

TIP

在线卡片编辑器 - 支持多种精美模板,实时预览,PDF导出,AI 智能生

3、bun

TIP

Bun 号称是最好用的 JavaScript 运行时,目前已经到了1.3版。

4、NGINX ACME 模块申请 HTTPS 证书

TIP

怎么让 nginx 服务器自己去申请 HTTPS 证书

5、URL 设计

TIP

介绍怎么设计 URL

6、使用 Rclone 挂载网盘到本地

TIP

使用 Rclone 可以方便地将网盘挂载到本地,支持多种云存储服务。

7、Pricing Pages Design

TIP

这个网站收集各种定价页的设计

8、learn js

js
const { a, ...others } = { a: 1, b: 2, c: 3 };
console.log(others); // { b: 2, c: 3 }

const [first, ...others2] = [1, 2, 3];
console.log(others2); // [2, 3]

返回目录

Developed by Orange