Philipp Schiffmann

Results 5 issues of Philipp Schiffmann

Deno Flash server crashes when it serves simple requests. Here is the full content of my `src/main.ts` file: ```ts Deno.serve({ handler(request) { console.log(request); return new Response("Hello world"); }, hostname: "0.0.0.0",...

bug
flash

I'm building a React web app, and I'm looking for a way to make form validation error messages extensible and customizable. To do that, I'd like to forward all variables...

In Dart, you can use [zones](https://api.dart.dev/stable/3.3.3/dart-async/Zone-class.html) to achieve the same goal as you're going for with this proposal. Dart zones are not a 3rd party library, but are provided by...

I want to treat the objects I parsed with valibot as immutable. Right now, I do this: ```ts import { DeepReadonly } from "ts-essentials"; const InstantSchema = transform(string(), (s) =>...

enhancement
question

My deno code contains jsx tags like: `hello world

bug
good first issue