ich möchte auf einem Debian 12 mit Apache2 für Bootstrap 5 und Symfony 6 die Bibliothek "popperjs" mit npm installieren. Das scheitert aber wie folgt:
Code: Alles auswählen
npm i @popperjs/core
npm ERR! code ECONNREFUSED
npm ERR! syscall connect
npm ERR! errno ECONNREFUSED
npm ERR! FetchError: request to https://registry.npmjs.org/@popperjs%2fcore failed, reason: connect ECONNREFUSED 2606:4700::6810:1922:443
npm ERR! at ClientRequest.<anonymous> (/usr/share/nodejs/minipass-fetch/lib/index.js:130:14)
npm ERR! at ClientRequest.emit (node:events:513:28)
npm ERR! at TLSSocket.socketErrorListener (node:_http_client:496:9)
npm ERR! at TLSSocket.emit (node:events:525:35)
npm ERR! at emitErrorNT (node:internal/streams/destroy:151:8)
npm ERR! at emitErrorCloseNT (node:internal/streams/destroy:116:3)
npm ERR! at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
npm ERR! FetchError: request to https://registry.npmjs.org/@popperjs%2fcore failed, reason: connect ECONNREFUSED 2606:4700::6810:1922:443
npm ERR! at ClientRequest.<anonymous> (/usr/share/nodejs/minipass-fetch/lib/index.js:130:14)
npm ERR! at ClientRequest.emit (node:events:513:28)
npm ERR! at TLSSocket.socketErrorListener (node:_http_client:496:9)
npm ERR! at TLSSocket.emit (node:events:525:35)
npm ERR! at emitErrorNT (node:internal/streams/destroy:151:8)
npm ERR! at emitErrorCloseNT (node:internal/streams/destroy:116:3)
npm ERR! at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {
npm ERR! code: 'ECONNREFUSED',
npm ERR! errno: 'ECONNREFUSED',
npm ERR! syscall: 'connect',
npm ERR! address: '2606:4700::6810:1922',
npm ERR! port: 443,
npm ERR! type: 'system',
npm ERR! requiredBy: '.'
npm ERR! }
npm ERR!
npm ERR! If you are behind a proxy, please make sure that the
npm ERR! 'proxy' config is set properly. See: 'npm help config'
npm ERR! A complete log of this run can be found in:
npm ERR! /home/mpenzi/.npm/_logs/2023-08-05T09_55_54_415Z-debug-0.log
Könnt ihr mir sagen, was mit npm falsch läuft? Und wenn mein Projekt in "/var/html/www/projekt" liegt, ich aus diesem Verzeichnis den Installationsbefehl absetze, wo wird die Bibliothek abgelegt? Etwa in "/var/html/www/projekt/assets/" oder in "/var/html/www/projekt/public/"?
Viele Grüße
Mpenzi