Marvin Hagemeister

Results 233 issues of Marvin Hagemeister

Trying out Deno in Node projects that import `.json` files currently requires the developer to add import attributes. ```ts // Node import openings from "../resources/openings.json"; // Deno import openings from...

suggestion
needs discussion

This PR adds a rule that warns when the `node:` specifier is missing when trying to import a built-in node module. ### Invalid: ```typescript import * as path from "path";...

## Steps to reproduce 1. Create an `index.html` file with this content: ```html 1 ``` 2. Run `deno fmt` Output: ```html 1 ``` Version: Deno 2.0.0

bug
deno fmt

Reported on discord https://discord.com/channels/684898665143206084/991511118524715139/1291386995892944928 > Sometimes when I navigate to a different page then use the browser's back button, all of the content on the page fails to load. This...

bug

From discord https://discord.com/channels/684898665143206084/991511118524715139/1279100135606849619 > When using deno fresh alone with the basepath config parameter set (let's say "/basepath"), all requests made to "/" are redirect to "/basepath" with a 302...

bug

To use HTMX with Fresh it'd be easier if there was just the raw innerHTML content, without an outer document.

## Failing module - **GitHub**: https://github.com/highlightjs/highlight.js - **npm**: https://www.npmjs.com/package/highlight.js ```js import * as highlight from "https://esm.sh/[email protected]"; console.log(highlight); ``` ## Error message After running `deno run` I got this: ``` error:...

deno

Fixes https://github.com/denoland/deno/issues/26299

The `node:dns` module exports a `.lookupService()` function that we seem to be missing. See https://nodejs.org/api/dns.html#dnslookupserviceaddress-port-callback ## Steps to reproduce: Run this snippet: ```ts import dns from "node:dns"; dns.lookupService("127.0.0.1", 22, (err,...

bug
node compat