Appearance
第49期 42 week share 2025-10-24
本周我读到有趣的文章
1、Veaury
TIP
Use React in Vue3 and Vue3 in React, And as perfect as possible!
2、anochat
TIP
Building a ChatGPT Chatbot by Yourself
3、sj.h
TIP
sj.h 这个开源的 JSON 解析库,号称是目前最快的 JSON 解析库。整个库只有 150 行 C99 代码,采用零内存分配设计,性能非常出色。
TIP
An user interface for the nginx web server, aimed at developers and enthusiasts that don't want to manage configuration files manually.
TIP
The API client for modern developers
TIP
A cross-platform .NET UI framework for building desktop, mobile, and web applications.
7、TinyVue
TIP
前端UI组件库中的大而全,由华为前端开发部开发维护,支持Vue3和vue2两大主流框架。
8、learn js
js
let person = {
name: 'jon',
friends: {
henry: {
age: 14
}
}
}
let henryAge = person?.['friends']?.['henry']?.['age']
// or
let henryAge = person?.friends?.henry?.age