Appearance
第52期 46 week share 2025-11-14
本周我读到有趣的文章
1、Valdi
TIP
AValdi is a cross-platform UI framework snap
2、Toon
TIP
It saves 30-60% of tokens compared to JSON
3、快图设计
TIP
快图设计,vue-fabric-editor 是一款基于 fabric.js 和 Vue 开发的图片编辑器
4、fnm
TIP
Fast and simple Node.js version manager, built in Rust
TIP
设置并校验 Input 框输入,Input Type Sandbox 各种类型都有,专精尖
TIP
A simple CSS Grid generator tool to help you create grid layouts quickly and easily.
7、Throttle solves that by letting a function run only every X milliseconds
js
function throttle(fn, limit) {
let lastCall = 0;
return (...args) => {
const now = Date.now();
if (now - lastCall >= limit) {
lastCall = now;
fn(...args);
}
};
}