☕ Weekly Dev's Brew #2
We're exploring @angular.dev Resource RFC this week - a thoughtful approach to handling async data that bridges synchronous signals with asynchronous sources.
A short thread on what's brewing in web dev...
We're exploring @angular.dev Resource RFC this week - a thoughtful approach to handling async data that bridges synchronous signals with asynchronous sources.
A short thread on what's brewing in web dev...
Comments
Subscribe for web dev updates that pair perfectly with your morning coffee.
- @tanstack.com Form reaches stable v1 with support for five frameworks, thanks @crutchcorn.dev
- GPT-4.5 arrives with improved conversation abilities
- @antfu.me introduces "Quansync"
- VS Code uncovers security issues in popular extensions
https://www.wordman.dev/blog/typescript-enums
```typescript
userData = httpResource(() => `/api/user/${currentUserId()}`);
@if (userData.isLoading()) {
}
```
With signals for tracking loading states, errors, and the actual data.