Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

201
Vistas
Routing from any path to same files in express, nodejs

I want to be able to send the same files for different paths like /stuff and /stuff/foo, the problem is that when I do try to do this I'm getting the following error:

Refused to execute script from 'http://localhost:8000/stuff/main.js' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.

Here is the code:

app.use("/", express.static(path.join(__dirname, "./../public")));
app.get("/stuff", sendIndexHTML);
app.get("/stuff/:id", sendIndexHTML);

function sendIndexHTML(req, res) {
    res.sendFile(path.join(__dirname + "./../public/index.html"));
}
about 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

You're referencing main.js in your index.html as a relative path so it's getting served from /stuff, which that path is set up to return index.html (which has a mime type text/html).

What you need to do is update the script file path in your html file.

change

<script src="main.js"></script>

to

<script src="/main.js"></script>

that way it is served from the root path which is configured to serve static assets.

about 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda