Mark “I am the Redux core team” Erikson just released the revised Redux Essentials tutorial with TypeScript examples, more RTK APIs, and lots of new concept explanations.
FusionAuth is a customer auth platform that’s purpose-built to make developers’ lives awesome. It gives you all the features your app needs plus a customizable, scalable solution you can run on any computer, anywhere in the world. [sponsored]
Robby Pruan wrote A different way to think about TypeScript.
Astro 4.13 introduces stable request rewriting, stable content collection JSON schemas, and some logging improvements.
Rslib is an Rsbuild-based library build tool that just went public yesterday – and the entire world’s equity markets immediately crashed. Coincidence?
JS-PyTorch is a deep learning JavaScript library that you can use to train, test, and deploy neural networks with Node.js or a web browser.
CarbonQA provides high-quality QA services for dev teams, so you never have to waste engineering time on QA testing ever again. Their US-based QA testers will break your app repeatedly, so your developers don’t have to worry about it. [sponsored]
Igor Zinkovsky and Andy Jiang wrote about Benchmarking AWS Lambda cold starts across JavaScript runtimes on the Deno blog. I bet you’ll never guess which runtime came out on top.
Nx 19.5 comes with newly added support for StackBlitz, Bun, and incremental builds with Vite.
MERJ and Vercel just released some interesting research on How Google handles JavaScript throughout the indexing process that aims to “demystify Google’s rendering through empirical evidence.” I’m pretty sure Galileo was trying to do the same thing before the pope put him under house arrest for the rest of his life.
async function completeCheckout(orderId) {
await updateAnalytics(orderId);
const order = await processOrder(orderId);
return order;
}
Because processOrder
doesn’t depend on the result of updateAnalytics
, you can parallelize the two invocations.
async function completeCheckout(orderId) {
const [_, order] = await Promise.all([
updateAnalytics(orderId),
processOrder(orderId)
])
return order;
}
Built with ❤️ by uidotdev
50 W Broadway Ste 333 PMB 51647 Salt Lake City, Utah 84101
Unsubscribe ![](https://open.convertkit-mail4.com/75u9w592ens8hkn6x98c9uw642666tn
马克“我是Redux核心团队”埃里克森刚刚发布了修订 Redux Essentials 教程有了TypeScript的例子,更多的RTK API,以及很多新的概念解释。
合并这是一个专门设计的客户平台,旨在让开发人员的生活变得惊人,它为您提供您应用程序所需的所有功能以及可自定义、可扩展的解决方案,您可以在世界任何地方在任何计算机上运行。
罗伯特·普兰写道另一种思考TypeScript的方式是的
星座 4.13引入稳定请求重写、稳定内容收集 JSON 方案以及一些日志改进。
$350这是一个基于Rsbuild的图书馆构建工具,昨天刚刚公开 - 整个世界的股市立即崩溃了。
JS - 皮托克是一个深度学习的JavaScript库,您可以使用它来训练,测试和使用Node.js或Web浏览器部署神经网络。
碳水化合物提供对于 dev 团队的高质量 QA 服务,所以你再也不必浪费在QA测试上的工程时间,他们的美国QA测试人员会反复打破你的应用程序,所以你的开发人员不必担心。
Igor Zinkovsky 和 Andy Jiang 写了关于基准 AWS Lambda 冷启动跨 JavaScript 运行时间在Deno博客上,我打赌你永远不会猜到哪个跑步时间出现在顶部。
NX 19,5新增了 StackBlitz、Bun 和 Vite 增量构建的支持。
MERJ和Vercel刚刚发布了一些有趣的研究Google 如何在整个索引过程中处理 JavaScript我确信伽利略在教皇将他终身关押之前也试图做同样的事情。
async function completeCheckout(orderId) {
await updateAnalytics(orderId);
const order = await processOrder(orderId);
return order;
}
因为processOrder
并不取决于结果updateAnalytics
,你可以平行两个召唤。
async function completeCheckout(orderId) {
const [_, order] = await Promise.all([
updateAnalytics(orderId),
processOrder(orderId)
])
return order;
}
由 ❤️ 建成$375
50 W 百老汇 Ste 333 PMB 51647 盐湖城, 犹他州 84101
未订阅![ ](https://open.convertkit-mail4.com/75u9w592ens8hkn6x98c9uw642666tn)
发布者