Posts
Web Framework Quickstart Guide
January 16, 2024•1,236 words
Here's the quickest ways you can get up-and-running with templates for React, Angular, and Vue; using official tools.
Astro Healthcheck
December 29, 2023•346 words
Monitoring Your Blog for Issues
Angular Dynamic host Property Usage
December 28, 2023•819 words
In directives and components alike, it can be a pain to add attributes and bindings to the host element. Instead of using DI to change the host, try this instead.
What is React's useActionState and useFormStatus?
December 20, 2023•1,469 words
React Server Actions are an awesome way to pass data to and from your React client and server. Like all functions, they need a way to return data.
What are React Server Actions?
December 19, 2023•1,917 words
While React Suspense APIs enable you to load data asynchronously from the server, Server Actions allow you to send data to the server from the client.
About time - how to unit test code that depends on time
December 19, 2023•849 words
Suppose that the logic of your program depends on time. That is, you need to keep track of when something in the past happened, and what time it is...