ebody: Kann man eine Datei eines github Repros als Modul über eine github URL einbinden?

Beitrag lesen

Hallo,

wenn man nur eine bestimmte JS Datei eines github Repros benötigt und die Klasse der Datei wird mit export zum Export frei gegeben, kann ich diese Klasse dann über eine github URL importieren?

Ich habe bereits folgendes mit jeweils vollständigem Pfad probiert, das hat aber nicht funktioniert:

import {ClassName} from 'https://github.com/author/repro...classes.js';`

Access to script at 'https://github.com/author/repro...classes.js' from origin 'http://localhost' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

import {ClassName} from 'https://raw.githubusercontent.com/author/repro...classes.js';

Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/plain". Strict MIME type checking is enforced for module scripts per HTML spec.

Gibt es evtl. eine andere URL/Möglichkeit?

Gruß ebody