Alberto Valero Gómez

Results 13 issues of Alberto Valero Gómez

Hello, I get multiple errors when running sample provided in Readme. I run it using `deno run --allow-net app.ts` Errors are like this: ``` TS7006 [ERROR]: Parameter 'info' implicitly has...

The `onChange` prop function of the `MDEditor` component is cached (due to the `useReducer`), and thus data passed is taken as closure, not updating when component re-renders. For example, for...

fixes #12 Please, check it is well done. I am no expert.

Hello, I have a server configured with http as follows: ``` const handler = async (req: Request) => { const { pathname } = new URL(req.url); return pathname === "/graphql"...

On safari, when clicking on a TOC link the following message appears on the console ``` Blocked script execution in '___TOC link____' because the document's frame is sandboxed and the...

There is no configuration.scad as stated in README

Is there any way to define async components? It would be nice to be able to delegate server side data fetching to components.

Complete and Document Attachment functionality.

enhancement

Problem detected when publishing: https://jsr.io/@avalero/preact-hooks I have created a custom hook for preact - https://github.com/avalero/preact-hooks The package tries to import `preact` whith npm, as shown in this `deno.json` ```json {...

Version: Deno 2.0.0 With a simple `Request` this code fails when no `body` is received ```js if(req.body) { const body= await req.json(); if (body.name) return new Response(`Hola ${body.name}`); } ```...

question