-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
blog(2023-01-09104828.md): 2023-01-09 BarcodeDetector、JavaScript Risi…
…ng Stars、Qwik blog、ReactNative V0.71.0、proxy-memoize V2.0、Zustand vs. Signals - [BarcodeDetector,JavaScript Rising Stars,Qwik blog,ReactNative V0.71.0,proxy-memoize V2.0,Zustand vs. Signals]
- Loading branch information
Showing
1 changed file
with
104 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
--- | ||
slug: 2023-01-09104828 | ||
title: 2023-01-09 BarcodeDetector、JavaScript Rising Stars、Qwik blog、ReactNative V0.71.0、proxy-memoize V2.0、Zustand vs. Signals | ||
authors: [innocces] | ||
tags: [BarcodeDetector,JavaScript Rising Stars,Qwik blog,ReactNative V0.71.0,proxy-memoize V2.0,Zustand vs. Signals] | ||
--- | ||
> 整合来源包含 [咲奈的平行时空](https://t.me/SakinaSpace)、 各种前端论坛以及吹水群 | ||
 | ||
|
||
摘要 | ||
|
||
- BarcodeDetector | ||
|
||
- 2022 JavaScript Rising Stars | ||
|
||
- Qwik blog | ||
|
||
- ReactNative V0.71.0 | ||
|
||
- proxy-memoize V2.0 | ||
|
||
- Zustand vs. Signals | ||
|
||
## BarcodeDetector | ||
|
||
[BarcodeDetector MDN](https://developer.mozilla.org/en-US/docs/Web/API/BarcodeDetector) | ||
[BarcodeDetector blog](https://www.zhangxinxu.com/wordpress/2023/01/js-parse-barcode-qrcode-barcodedetector/) | ||
|
||
 | ||
|
||
浏览器原生支持的二维码解析 | ||
|
||
```javascript | ||
// create new detector | ||
const barcodeDetector = new BarcodeDetector({ | ||
formats: ['code_39', 'codabar', 'ean_13'] | ||
}) | ||
|
||
// check compatibility | ||
if (barcodeDetector) { | ||
console.log('Barcode Detector supported!') | ||
} else { | ||
console.log('Barcode Detector is not supported by this browser.') | ||
} | ||
``` | ||
|
||
## 2022 JavaScript Rising Stars | ||
|
||
[2022 JavaScript Rising Stars Site](https://risingstars.js.org/2022/zh) | ||
|
||
 | ||
|
||
年度识图. 看看自己都认识哪些? | ||
|
||
年度冠军: 996.bun | ||
|
||
## Qwik blog | ||
|
||
[Qwik blog juejin](https://juejin.cn/post/7186161640121827387) | ||
|
||
 | ||
|
||
文章对比了 CSR SSR 以及 水合 惰性加载等. 可以阅读了解 | ||
(主要是铺天盖地的宣传, 你不想看到都不可能) | ||
|
||
## ReactNative V0.71.0 | ||
|
||
[ReactNative V0.71.0 blog](https://reactnative.dev/blog/2023/01/03/typescript-first) | ||
|
||
 | ||
|
||
RC5 了. 包含默认的 ts 模版以及大量新的特性 | ||
|
||
## proxy-memoize V2.0 | ||
|
||
[proxy-memoize V2.0 changelog](https://github.com/dai-shi/proxy-memoize/blob/main/CHANGELOG.md#200---2023-01-05) | ||
|
||
 | ||
|
||
valtio 的 机制库. | ||
|
||
## Zustand vs. Signals | ||
|
||
[Zustand vs. Signals blog](https://medium.com/@kevinschaffter/zustand-vs-signals-e664bff2ce4a) | ||
|
||
 | ||
|
||
Wait, but what about Context? | ||
|
||
## 常用网站推荐 | ||
|
||
- [DEV](https://dev.to/) | ||
|
||
- [Medium](https://medium.com/?tag=javascript) | ||
|
||
- [Github](https://github.com/) | ||
|
||
- [Stackoverflow](https://stackoverflow.com/) | ||
|
||
- [V2](https://www.v2ex.com/) | ||
|
||
- [Producthunt](https://www.producthunt.com/discussions?category=developers) | ||
|