A focus on Web APIs and working with HTML directly. There is no virtual DOM, you are working directly with the DOM.
This is how middleware.
export async function handle({ event, resolve }) {
console.log('event: ', event);
return resolve(event);
}