3

Como resolver el Error 404 Not Found: [email protected]

Si al ejecutar npm install te muestra el error:

Error404Not Found: event-stream@3.3.6

Eso es debido a una vulnerabilidad de seguridad presentada en dicha versión del modulo event-stream y por lo tanto fue removido del servidor de NPM.

La forma de resolverlo es la siguiente:

  1. Instalamos la última versión de dicho modulo:
npm install--save event-stream
  1. Eliminamos el directorio de node_modules:
rm -rf node_modules
  1. Reinstalamos las dependencias:
npm install
Escribe tu comentario
+ 2
1
5365Puntos
4 años

cuando instalo npm install me sigue saltando el error 404! tengo el ubuntu, node version 10.19.0 y npm version 6.14.4

1
32647Puntos
5 años

Tengo un error:
cuando escribo: localhost:3000/api/user me da el siguiente error:
RangeError [ERR_HTTP_INVALID_STATUS_CODE]: Invalid status code: Todo correcto
at ServerResponse.writeHead (_http_server.js:208:11)
at ServerResponse._implicitHeader (http_server.js:199:8)
at write (_http_outgoing.js:585:9)
at ServerResponse.end (_http_outgoing.js:709:5)
at ServerResponse.send (C:…\PlatziSocial\node_modules\express\lib\response.js:221:10)
at ServerResponse.json (C:…s\PlatziSocial\node_modules\express\lib\response.js:267:15)
at ServerResponse.send (C:…\PlatziSocial\node_modules\express\lib\response.js:158:21)
at Object.exports.success (C:…\PlatziSocial\network\response.js:4:24)
at C:…\PlatziSocial\api\components\user\network.js:10:14
at Layer.handle [as handle_request] (C:…\PlatziSocial\node_modules\express\lib\router\layer.js:95:5)
¿Alguién sabe a qué se debe?