Skip to content
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo
  1. ioBroker Community Home
  2. Deutsch
  3. Einsteigerfragen
  4. Installation
  5. Troubleshooting NodeJS update

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.2k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.9k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.2k

Troubleshooting NodeJS update

Geplant Angeheftet Gesperrt Verschoben Installation
nodejs 18nodejs update
504 Beiträge 60 Kommentatoren 146.4k Aufrufe 52 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • JoJo58J JoJo58

    Ich habe die Installation von nodejs 18.5 wie beschrieben durchgeführt. Bei mir war es ein Downgrade von Version 19.7. Dann hatte ich das gleiche Problem wie @Unterstedter dass die Daten in /usr/local/bin liegen. Also wie beschrieben die Dateien removed.

    sudo rm /usr/local/bin/n*
    

    Jetzt bekomme ich eine Fehlermeldung wenn ich die Version abfrage:

    smarthome@raspi8gb:~ $ type -P nodejs node npm npx && nodejs -v && node -v && npm -v && npx -v
    /usr/bin/nodejs
    /usr/bin/node
    /usr/bin/npm
    /usr/bin/npx
    v18.15.0
    v18.15.0
    /usr/lib/node_modules/npm/lib/cli.js:48
        throw err
        ^
    
    TypeError: Class extends value undefined is not a constructor or null
        at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js:110:44)
        at Module._compile (node:internal/modules/cjs/loader:1254:14)
        at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
        at Module.load (node:internal/modules/cjs/loader:1117:32)
        at Module._load (node:internal/modules/cjs/loader:958:12)
        at Module.require (node:internal/modules/cjs/loader:1141:19)
        at require (node:internal/modules/cjs/helpers:110:18)
        at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/agent.js:174:29)
        at Module._compile (node:internal/modules/cjs/loader:1254:14)
        at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
        at Module.load (node:internal/modules/cjs/loader:1117:32)
        at Module._load (node:internal/modules/cjs/loader:958:12)
        at Module.require (node:internal/modules/cjs/loader:1141:19)
        at require (node:internal/modules/cjs/helpers:110:18)
        at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js:7:18)
        at Module._compile (node:internal/modules/cjs/loader:1254:14)
    
    Node.js v18.15.0
    smarthome@raspi8gb:~ $
    

    Habe dann versucht npm neu zu installieren, doch das geht auch nicht:

    smarthome@raspi8gb:~ $ sudo apt install npm
    Paketlisten werden gelesen… Fertig
    Abhängigkeitsbaum wird aufgebaut… Fertig
    Statusinformationen werden eingelesen… Fertig
    Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass
    Sie eine unmögliche Situation angefordert haben oder, wenn Sie die
    Unstable-Distribution verwenden, dass einige erforderliche Pakete noch
    nicht erstellt wurden oder Incoming noch nicht verlassen haben.
    Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:
    
    Die folgenden Pakete haben unerfüllte Abhängigkeiten:
     libnode72 : Kollidiert mit: nodejs-legacy
     nodejs : Kollidiert mit: npm
    E: Probleme können nicht korrigiert werden, Sie haben zurückgehaltene defekte Pakete.
    smarthome@raspi8gb:~ $
    
    

    Hab schon nodejs auf die Version 19.8 upgedatet, aber die gleichen Probleme. Im Moment bin ich wieder bei 18.5. Kann ich diesen Fehler irgendwie korrigieren, oder muss ich ein Backup zurückspielen? Was ich nur ungern tun würde...

    Thomas BraunT Online
    Thomas BraunT Online
    Thomas Braun
    Most Active
    schrieb am zuletzt editiert von
    #21

    @jojo58 sagte in Troubleshooting NodeJS update:

    Habe dann versucht npm neu zu installieren, doch das geht auch nicht:

    Finger weg vom Paket 'npm'!!
    Das ist schon in 'nodejs' enthalten. (Jedenfalls so wie es von nodesource gepackt wird).

    Hol den ganzen Quark aus dem System:

    iob stop
    sudo apt purge --autoremove nodejs* npm node-* libnode72
    

    Und dann schauen was du da jetzt in den Quellen angelegt hast:

    sudo apt update
    apt policy nodejs
    sudo apt install nodejs
    iob start
    

    Linux-Werkzeugkasten:
    https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
    NodeJS Fixer Skript:
    https://forum.iobroker.net/topic/68035/iob-node-fix-skript
    iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

    JoJo58J 1 Antwort Letzte Antwort
    1
    • Thomas BraunT Thomas Braun

      @jojo58 sagte in Troubleshooting NodeJS update:

      Habe dann versucht npm neu zu installieren, doch das geht auch nicht:

      Finger weg vom Paket 'npm'!!
      Das ist schon in 'nodejs' enthalten. (Jedenfalls so wie es von nodesource gepackt wird).

      Hol den ganzen Quark aus dem System:

      iob stop
      sudo apt purge --autoremove nodejs* npm node-* libnode72
      

      Und dann schauen was du da jetzt in den Quellen angelegt hast:

      sudo apt update
      apt policy nodejs
      sudo apt install nodejs
      iob start
      
      JoJo58J Offline
      JoJo58J Offline
      JoJo58
      schrieb am zuletzt editiert von JoJo58
      #22

      @thomas-braun sagte in Troubleshooting NodeJS update:

      sudo apt purge --autoremove nodejs* npm node-* libnode72

      Alle Befehle wie angegeben ausgeführt:

      Hinweis: »node-jschardet« wird an Stelle von »node-chardet« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-browser-process-hrtime« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-data-urls« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-decimal.js« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-domexception« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-html-encoding-sniffer« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-is-potential-custom-element-name« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-nwsapi« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-parse5« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-parse5-build-scripts« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-request-promise-native« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-saxes« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-symbol-tree« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-tr46« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-types-jsdom« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-types-parse5« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-w3c-hr-time« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-w3c-xmlserializer« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-whatwg-encoding« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-whatwg-mimetype« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-whatwg-url« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-xml-name-validator« gewählt.
      Hinweis: »node-jsdom« wird an Stelle von »node-xmlchars« gewählt.
      Hinweis: »node-json-parse-better-errors« wird an Stelle von »node-json-parse-even-better-errors« gewählt.
      Hinweis: »node-json-stable-stringify« wird an Stelle von »node-fast-json-stable-stringify« gewählt.
      Hinweis: »node-json-stable-stringify« wird an Stelle von »node-types-fast-json-stable-stringify« gewählt.
      Hinweis: »node-json-stable-stringify« wird an Stelle von »node-types-json-stable-stringify« gewählt.
      Hinweis: »node-lazy-property« wird an Stelle von »node-types-lazy-property« gewählt.
      Hinweis: »node-less« wird an Stelle von »node-image-size« gewählt.
      Hinweis: »node-less« wird an Stelle von »node-less-test-data« gewählt.
      Hinweis: »node-less« wird an Stelle von »node-less-test-import-module« gewählt.
      Hinweis: »node-leven« wird an Stelle von »node-levenary« gewählt.
      Hinweis: »node-lodash« wird an Stelle von »node-lodash-es« gewählt.
      Hinweis: »node-lodash« wird an Stelle von »node-types-lodash« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-algorithm« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-application« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-collections« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-commands« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-coreutils« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-datagrid« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-datastore« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-default-theme« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-disposable« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-domutils« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-dragdrop« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-keyboard« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-messaging« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-polling« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-properties« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-signaling« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-virtualdom« gewählt.
      Hinweis: »node-lumino« wird an Stelle von »node-lumino-widgets« gewählt.
      Hinweis: »node-marked« wird an Stelle von »node-types-marked« gewählt.
      Hinweis: »node-merge-stream« wird an Stelle von »node-types-merge-stream« gewählt.
      Hinweis: »node-micromatch« wird an Stelle von »node-types-micromatch« gewählt.
      Hinweis: »node-mime« wird an Stelle von »node-mime-db« gewählt.
      Hinweis: »node-mime« wird an Stelle von »node-mime-score« gewählt.
      Hinweis: »node-mime« wird an Stelle von »node-types-mime-db« gewählt.
      Hinweis: »node-mime-types« wird an Stelle von »node-types-mime-types« gewählt.
      Hinweis: »node-minimatch« wird an Stelle von »node-types-minimatch« gewählt.
      Hinweis: »node-minimist« wird an Stelle von »node-minimist-options« gewählt.
      Hinweis: »node-minimist« wird an Stelle von »node-types-minimist« gewählt.
      Hinweis: »node-mkdirp« wird an Stelle von »node-types-mkdirp« gewählt.
      Hinweis: »node-mocks-http« wird an Stelle von »node-node-mocks-http« gewählt.
      Hinweis: »node-ms« wird an Stelle von »node-types-ms« gewählt.
      Paket »node-parallel« ist nicht installiert, wird also auch nicht entfernt.
      Hinweis: »node-normalize-package-data« wird an Stelle von »node-types-normalize-package-data« gewählt.
      Hinweis: »node-object-assign« wird an Stelle von »node-object.assign« gewählt.
      Hinweis: »node-object-inspect« wird an Stelle von »node-types-object-inspect« gewählt.
      Hinweis: »node-on-finished« wird an Stelle von »node-finished« gewählt.
      Hinweis: »node-on-finished« wird an Stelle von »node-ee-first« gewählt.
      Hinweis: »node-optionator« wird an Stelle von »node-word-wrap« gewählt.
      Hinweis: »node-original« wird an Stelle von »node-types-original« gewählt.
      Hinweis: »node-p-limit« wird an Stelle von »node-p-try« gewählt.
      Hinweis: »node-p-limit« wird an Stelle von »node-yocto-queue« gewählt.
      Hinweis: »node-parse-json« wird an Stelle von »node-lines-and-columns« gewählt.
      Hinweis: »node-parse-json« wird an Stelle von »node-types-parse-json« gewählt.
      Hinweis: »node-pbkdf2« wird an Stelle von »node-types-pbkdf2« gewählt.
      Hinweis: »node-pegjs« wird an Stelle von »node-peg« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-buffer-writer« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-packet-reader« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-pg-connection-string« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-pg-cursor« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-pg-int8« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-pg-numeric« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-pg-pool« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-pg-types« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-pgpass« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-postgres-array« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-postgres-bytea« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-postgres-date« gewählt.
      Hinweis: »node-pg« wird an Stelle von »node-postgres-interval« gewählt.
      Hinweis: »node-postcss« wird an Stelle von »node-line-column« gewählt.
      Hinweis: »node-postcss« wird an Stelle von »node-nanoid« gewählt.
      Hinweis: »node-pre-gyp« wird an Stelle von »node-node-pre-gyp« gewählt.
      Hinweis: »node-prompts« wird an Stelle von »node-kleur« gewählt.
      Hinweis: »node-prompts« wird an Stelle von »node-sisteransi« gewählt.
      Hinweis: »node-prompts« wird an Stelle von »node-types-prompts« gewählt.
      Hinweis: »node-prop-types« wird an Stelle von »node-types-prop-types« gewählt.
      Hinweis: »node-proxy-addr« wird an Stelle von »node-forwarded« gewählt.
      Hinweis: »node-proxyquire« wird an Stelle von »node-fill-keys« gewählt.
      Hinweis: »node-proxyquire« wird an Stelle von »node-module-not-found-error« gewählt.
      Paket »node-rdf-canonize-native« ist nicht installiert, wird also auch nicht entfernt.
      Hinweis: »node-re2« wird an Stelle von »node-heya-ice« gewählt.
      Hinweis: »node-re2« wird an Stelle von »node-heya-unify« gewählt.
      Hinweis: »node-re2« wird an Stelle von »node-heya-unit« gewählt.
      Hinweis: »node-re2« wird an Stelle von »node-install-artifact-from-github« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-create-subscription« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-eslint-plugin-react-hooks« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-jest-react« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-art« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-cache« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-client« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-debug-tools« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-dom« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-fetch« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-is« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-noop-renderer« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-reconciler« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-refresh« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-server« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-shallow-renderer« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-test-renderer« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-react-transport-dom-webpack« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-scheduler« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-types-create-subscription« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-types-react« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-types-react-cache« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-types-react-devtools« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-types-react-dom« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-types-react-is« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-types-react-reconciler« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-types-react-test-renderer« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-types-scheduler« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-types-use-subscription« gewählt.
      Hinweis: »node-react« wird an Stelle von »node-use-subscription« gewählt.
      Hinweis: »node-read-pkg« wird an Stelle von »node-type-fest« gewählt.
      Hinweis: »node-redis« wird an Stelle von »node-redis-commands« gewählt.
      Hinweis: »node-redis« wird an Stelle von »node-redis-errors« gewählt.
      Hinweis: »node-redis« wird an Stelle von »node-redis-parser« gewählt.
      Hinweis: »node-replace-ext« wird an Stelle von »node-types-replace-ext« gewählt.
      Hinweis: »node-requirejs« wird an Stelle von »node-types-requirejs« gewählt.
      Hinweis: »node-resolve« wird an Stelle von »node-is-core-module« gewählt.
      Hinweis: »node-resolve« wird an Stelle von »node-object-keys« gewählt.
      Hinweis: »node-resolve« wird an Stelle von »node-path-parse« gewählt.
      Hinweis: »node-resolve« wird an Stelle von »node-types-resolve« gewählt.
      Hinweis: »node-resolve-from« wird an Stelle von »node-callsites« gewählt.
      Hinweis: »node-resolve-from« wird an Stelle von »node-parent-module« gewählt.
      Hinweis: »node-rimraf« wird an Stelle von »node-types-rimraf« gewählt.
      Hinweis: »node-safe-buffer« wird an Stelle von »node-safer-buffer« gewählt.
      Hinweis: »node-sane« wird an Stelle von »node-bser« gewählt.
      Hinweis: »node-sane« wird an Stelle von »node-capture-exit« gewählt.
      Hinweis: »node-sane« wird an Stelle von »node-cnakazawa-watch« gewählt.
      Hinweis: »node-sane« wird an Stelle von »node-exec-sh« gewählt.
      Hinweis: »node-sane« wird an Stelle von »node-fb-watchman« gewählt.
      Hinweis: »node-sane« wird an Stelle von »node-makeerror« gewählt.
      Hinweis: »node-sane« wird an Stelle von »node-node-int64« gewählt.
      Hinweis: »node-sane« wird an Stelle von »node-rsvp« gewählt.
      Hinweis: »node-sane« wird an Stelle von »node-tmpl« gewählt.
      Hinweis: »node-sane« wird an Stelle von »node-types-fb-watchman« gewählt.
      Hinweis: »node-sane« wird an Stelle von »node-types-sane« gewählt.
      Hinweis: »node-sane« wird an Stelle von »node-walker« gewählt.
      Hinweis: »node-sax« wird an Stelle von »node-types-sax« gewählt.
      Hinweis: »node-semver« wird an Stelle von »node-types-semver« gewählt.
      Hinweis: »node-sinon« wird an Stelle von »node-nise« gewählt.
      Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-commons« gewählt.
      Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-fake-timers« gewählt.
      Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-formatio« gewählt.
      Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-referee« gewählt.
      Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-referee-sinon« gewählt.
      Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-samsam« gewählt.
      Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-text-encoding« gewählt.
      Hinweis: »node-sinon« wird an Stelle von »node-types-sinon« gewählt.
      Hinweis: »node-sinon« wird an Stelle von »node-types-sinonjs-fake-timers« gewählt.
      Hinweis: »node-snapdragon« wird an Stelle von »node-snapdragon-capture« gewählt.
      Hinweis: »node-snapdragon« wird an Stelle von »node-snapdragon-capture-set« gewählt.
      Hinweis: »node-source-map« wird an Stelle von »node-types-source-map« gewählt.
      Hinweis: »node-source-map-resolve« wird an Stelle von »node-atob« gewählt.
      Hinweis: »node-source-map-resolve« wird an Stelle von »node-decode-uri-component« gewählt.
      Hinweis: »node-source-map-resolve« wird an Stelle von »node-source-map-url« gewählt.
      Hinweis: »node-source-map-support« wird an Stelle von »node-types-source-map-support« gewählt.
      Hinweis: »node-spdx-license-ids« wird an Stelle von »node-get-spdx-license-ids« gewählt.
      Hinweis: »node-srs« wird an Stelle von »node-gdal-next« gewählt.
      Hinweis: »node-stack-utils« wird an Stelle von »node-types-stack-utils« gewählt.
      Hinweis: »node-static« wird an Stelle von »node-node-static« gewählt.
      Hinweis: »node-strip-indent« wird an Stelle von »node-min-indent« gewählt.
      Hinweis: »node-superagent« wird an Stelle von »node-fast-safe-stringify« gewählt.
      Hinweis: »node-supports-color« wird an Stelle von »node-types-supports-color« gewählt.
      Paket »node-nyc« ist nicht installiert, wird also auch nicht entfernt.
      Hinweis: »node-tap« wird an Stelle von »node-bind-obj-methods« gewählt.
      Hinweis: »node-tap« wird an Stelle von »node-fs-exists-cached« gewählt.
      Hinweis: »node-tap« wird an Stelle von »node-function-loop« gewählt.
      Hinweis: »node-tap« wird an Stelle von »node-own-or« gewählt.
      Hinweis: »node-tap« wird an Stelle von »node-own-or-env« gewählt.
      Hinweis: »node-tap« wird an Stelle von »node-trivial-deferred« gewählt.
      Hinweis: »node-tap« wird an Stelle von »node-tsame« gewählt.
      Hinweis: »node-tap« wird an Stelle von »node-yapool« gewählt.
      Hinweis: »node-tap-parser« wird an Stelle von »node-events-to-array« gewählt.
      Hinweis: »node-tar« wird an Stelle von »node-types-tar« gewählt.
      Hinweis: »node-tar-stream« wird an Stelle von »node-fs-constants« gewählt.
      Hinweis: »node-tar-stream« wird an Stelle von »node-types-tar-stream« gewählt.
      Hinweis: »node-through« wird an Stelle von »node-types-through« gewählt.
      Paket »node-mapnik« ist nicht installiert, wird also auch nicht entfernt.
      Hinweis: »node-to-regex« wird an Stelle von »node-regexp-tree« gewählt.
      Hinweis: »node-to-regex« wird an Stelle von »node-safe-regex« gewählt.
      Hinweis: »node-tough-cookie« wird an Stelle von »node-types-tough-cookie« gewählt.
      Hinweis: »node-tunein« wird an Stelle von »node-node-tunein« gewählt.
      Paket »node-uglify-to-browserify« ist nicht installiert, wird also auch nicht entfernt.
      Hinweis: »node-unicode-13.0.0« wird an Stelle von »node-unicode-lastest« gewählt.
      Hinweis: »node-url-parse« wird an Stelle von »node-types-url-parse« gewählt.
      Paket »node-node-uuid« ist nicht installiert, wird also auch nicht entfernt.
      Hinweis: »node-uuid« wird an Stelle von »node-types-uuid« gewählt.
      Hinweis: »node-vinyl« wird an Stelle von »node-types-vinyl« gewählt.
      Hinweis: »node-vue« wird an Stelle von »node-vue-server-renderer« gewählt.
      Hinweis: »node-vue« wird an Stelle von »node-weex-template-compiler« gewählt.
      Hinweis: »node-vue« wird an Stelle von »node-weex-vue-framework« gewählt.
      Hinweis: »node-watchpack« wird an Stelle von »node-glob-to-regexp« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-eslint-plugin-webassembly« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-wast-loader« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-ast« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-cli« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-floating-point-hex-parser« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-api-error« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-buffer« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-code-frame« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-compiler« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-flatten-ast« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-fsm« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-numbers« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-test-framework« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-testsuite-runner« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-wasm-bytecode« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-wasm-section« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-ieee754« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-leb128« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-repl« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-utf8« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-validation« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wasm-edit« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wasm-gen« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wasm-opt« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wasm-parser« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wasm-text-gen« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wast-parser« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wast-printer« gewählt.
      Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wast-refmt« gewählt.
      Hinweis: »node-websocket« wird an Stelle von »node-bufferutil« gewählt.
      Hinweis: »node-websocket« wird an Stelle von »node-utf-8-validate« gewählt.
      Hinweis: »node-websocket« wird an Stelle von »node-yaeti« gewählt.
      Hinweis: »node-which« wird an Stelle von »node-types-which« gewählt.
      Hinweis: »node-write« wird an Stelle von »node-add-filename-increment« gewählt.
      Hinweis: »node-write« wird an Stelle von »node-strip-filename-increment« gewählt.
      Hinweis: »node-write-file-atomic« wird an Stelle von »node-types-write-file-atomic« gewählt.
      Hinweis: »node-ws« wird an Stelle von »node-wscat« gewählt.
      Hinweis: »node-yargs« wird an Stelle von »node-types-yargs« gewählt.
      Hinweis: »node-yargs-parser« wird an Stelle von »node-types-yargs-parser« gewählt.
      Hinweis: »nodeunit« wird an Stelle von »node-nodeunit« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npm« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npmcli-arborist« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npmcli-ci-detect« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npmcli-config« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npmcli-disparity-colors« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npmcli-git« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npmcli-installed-package-contents« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npmcli-map-workspaces« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npmcli-metavuln-calculator« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npmcli-name-from-folder« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npmcli-node-gyp« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npmcli-promise-spawn« gewählt.
      Hinweis: »npm« wird an Stelle von »node-npmcli-run-script« gewählt.
      Paket »node-uglifyjs« ist nicht installiert, wird also auch nicht entfernt.
      Hinweis: »rollup« wird an Stelle von »node-rollup« gewählt.
      Hinweis: »ruby-actioncable« wird an Stelle von »node-rails-actioncable« gewählt.
      Hinweis: »ruby-task-list« wird an Stelle von »node-deckar01-task-list« gewählt.
      Hinweis: »ts-jest« wird an Stelle von »node-bs-logger« gewählt.
      Hinweis: »ts-jest« wird an Stelle von »node-buffer-from« gewählt.
      Hinweis: »ts-jest« wird an Stelle von »node-ts-jest« gewählt.
      Hinweis: »ts-jest« wird an Stelle von »node-types-buffer-from« gewählt.
      Hinweis: »ts-node« wird an Stelle von »node-ts-node« gewählt.
      Hinweis: »webpack« wird an Stelle von »node-webpack« gewählt.
      Hinweis: »window-size« wird an Stelle von »node-window-size« gewählt.
      Hinweis: »yarnpkg« wird an Stelle von »node-yarn« gewählt.
      Paket »libnode72« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-abab« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-abbrev« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-absolute-path« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-abstract-leveldown« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-accepts« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-acorn« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-active-x-obfuscator« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-address« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-addressparser« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-after« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-agent-base« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ain2« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ajv« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ajv-keywords« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-almond« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-amdefine« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ansi« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ansi-align« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ansi-color-table« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ansi-colors« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ansi-escapes« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ansi-font« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ansi-regex« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ansi-styles« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ansi-up« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ansistyles« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-any-promise« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-anymatch« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ap« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-applause« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-aproba« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-archy« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-are-we-there-yet« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-arg« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-argparse« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-argv« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-arr-diff« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-arr-flatten« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-arr-union« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-array-differ« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-array-equal« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-array-find-index« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-array-flatten« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-array-from« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-array-parallel« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-array-series« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-array-union« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-array-uniq« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-array-unique« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-arrify« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-asap« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-asn1« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-asn1.js« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-assert« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-assert-plus« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-assertion-error« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-assertive« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-assume« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ast-types« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ast-util« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-astw« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-async« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-async-each« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-async-limiter« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-async-stacktrace« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-asynckit« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-auth-header« ist nicht installiert, wird also auch nicht entfernt.
      .............
      Paket »node-source-map-support« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-sourcemap-codec« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-sparkles« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-spdx-correct« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-spdx-exceptions« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-spdx-expression-parse« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-spdx-license-ids« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-sphericalmercator« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-split« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-split-string« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-split2« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-sprintf-js« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-sqlite3« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-srs« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-sshpk« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ssri« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stable« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stack-utils« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-standard-error« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-standard-http-error« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-starttls« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-static« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-static-eval« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-static-extend« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-static-module« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stats-webpack-plugin« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-statuses« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stealthy-require« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-step« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stream-array« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stream-assert« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stream-browserify« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stream-combiner2« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stream-consume« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stream-each« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stream-http« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stream-iterate« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stream-shift« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stream-splicer« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stream-to-observable« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-streamtest« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-strict-uri-encode« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-string-decoder« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-string-width« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-string.prototype.codepointat« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stringmap« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stringset« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stringstream« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-strip-ansi« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-strip-bom« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-strip-bom-stream« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-strip-eof« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-strip-indent« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-strip-json-comments« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-style-loader« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-stylus« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-subarg« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-superagent« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-supertest« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-supports-color« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-symbol-observable« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-syntax-error« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tacks« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tap« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tap-mocha-reporter« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tap-parser« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tapable« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tape« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tar« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tar-fs« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tar-pack« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tar-stream« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-telegram-bot-api« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-temp« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-temporary« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-term-size« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-terser« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-test« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-text-encoding« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-text-table« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-thenby« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-thenify« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-thenify-all« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-three-orbit-controls« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-three-stl-loader« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-through« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-through2« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-through2-filter« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tildify« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tilejson« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tilelive« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tilelive-bridge« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tilelive-mapnik« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tilelive-vector« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-time-stamp« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-time-zone« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-timeago.js« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-timed-out« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-timers-browserify« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tinycolor« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tippex« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tldjs« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tmatch« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tmp« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-to-absolute-glob« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-to-arraybuffer« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-to-fast-properties« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-to-object-path« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-to-regex« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-to-regex-range« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-toidentifier« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tough-cookie« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-transformers« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-traverse« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-trim-newlines« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-trust-json-document« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-trust-keyto« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-trust-webcrypto« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tslib« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tty-browserify« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tunein« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tunnel-agent« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-turbolinks« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-tweetnacl« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-type-check« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-type-detect« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-type-is« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-typedarray« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-typedarray-to-buffer« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-typescript« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-typescript-types« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ua-parser-js« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-uglify« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-uglify-js« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-uglify-save-license« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-uglifyjs-webpack-plugin« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-uid-number« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-uid-safe« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ultron« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-umd« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unbzip2-stream« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unc-path-regex« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-underscore« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-underscore.string« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unicode-13.0.0« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unicode-canonical-property-names-ecmascript« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unicode-loose-match« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unicode-match-property-ecmascript« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unicode-match-property-value-ecmascript« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unicode-property-aliases« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unicode-property-aliases-ecmascript« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unicode-property-value-aliases« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unicode-property-value-aliases-ecmascript« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unicode-tr51« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-union-value« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-uniq« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-uniqid« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-uniqs« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unique-filename« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unique-stream« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unique-string« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-universalify« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unorm« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unpipe« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-unset-value« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-uri-js« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-uri-path« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-url« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-url-join« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-url-loader« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-url-parse« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-url-parse-lax« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-url-to-options« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-urlgrey« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-use« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-util« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-util-deprecate« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-utilities« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-utils-merge« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-utml« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-uuid« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-v8flags« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vali-date« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-validate-npm-package-license« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-validate-npm-package-name« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-validator« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vary« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vasync« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-verror« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vhost« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vinyl« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vinyl-fs« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vinyl-sourcemaps-apply« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vlq« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vm-browserify« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vows« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vue« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vue-hot-reload-api« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vue-resource« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vue-style-loader« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-vue-template-compiler« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-watchpack« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-wcwidth.js« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-webassemblyjs« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-webfinger« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-webidl-conversions« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-webpack-merge« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-webpack-sources« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-webpack-stats-plugin« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-webrtc-adapter« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-websocket« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-websocket-driver« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-websocket-stream« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-when« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-which« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-which-module« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-wide-align« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-widest-line« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-wildemitter« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-with« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-wordwrap« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-worker-loader« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-wrap-ansi« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-wrappy« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-wrench« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-write« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-write-file-atomic« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-write-file-promise« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ws« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-xdg-basedir« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-xml2js« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-xmldom« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-xmlhttprequest« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-xmlhttprequest-ssl« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-xoauth2« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-xtend« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-xterm« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-xxhashjs« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-y18n« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-yajsml« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-yallist« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-yaml« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-yamlish« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-yargs« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-yargs-parser« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-yauzl« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-yawl« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-yazl« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-yn« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-ytdl-core« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-zen-observable« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-zeparser« ist nicht installiert, wird also auch nicht entfernt.
      Paket »node-zipfile« ist nicht installiert, wird also auch nicht entfernt.
      Paket »nodejs-doc« ist nicht installiert, wird also auch nicht entfernt.
      Paket »npm« ist nicht installiert, wird also auch nicht entfernt.
      Die folgenden Pakete werden ENTFERNT:
        nodejs*
      0 aktualisiert, 0 neu installiert, 1 zu entfernen und 0 nicht aktualisiert.
      Nach dieser Operation werden 175 MB Plattenplatz freigegeben.
      Möchten Sie fortfahren? [J/n] J
      (Lese Datenbank ... 126538 Dateien und Verzeichnisse sind derzeit installiert.)
      Entfernen von nodejs (18.15.0-deb-1nodesource1) ...
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/yallist« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/write-file-atomic« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/wrappy« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/wide-align« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/which/bin« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/wcwidth« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/validate-npm-package-name« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/validate-npm-package-license« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/util-deprecate« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/unique-slug« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/unique-filename« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/tiny-relative-date« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/text-table« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/tar/node_modules« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/tar/lib« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/supports-color« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/strip-ansi« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/string_decoder« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/string-width« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ssri« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/spdx-license-ids« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/spdx-expression-parse« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/spdx-exceptions« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/spdx-correct« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/socks/typings/common« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/socks-proxy-agent« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/smart-buffer« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/signal-exit« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/set-blocking« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/semver/bin« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/safer-buffer« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/safe-buffer« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/rimraf« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/retry« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/readable-stream/lib/internal/streams« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/read« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/read-package-json« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/read-cmd-shim« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/qrcode-terminal« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/promzard« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/promise-retry« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/promise-inflight« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/path-is-absolute« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/pacote/lib/util« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/once« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npmlog« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-user-validate« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-registry-fetch« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-profile« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-pick-manifest« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-packlist« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-package-arg« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-normalize-package-bin« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-install-checks« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-bundled« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-audit-report/lib« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/normalize-package-data« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/nopt« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/node-gyp/lib« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/node-gyp/.github/workflows« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/mute-stream« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ms« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/mkdirp/bin« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/minizlib/node_modules/minipass« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/minimatch« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/make-fetch-happen« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/lru-cache« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/libnpmteam« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/libnpmsearch« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/libnpmpublish« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/libnpmorg« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/libnpmhook« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/libnpmaccess« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/jsonparse« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/json-parse-even-better-errors« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/isexe« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/is-fullwidth-code-point« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/is-cidr« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ip« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ip-regex« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/init-package-json« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ini« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/inherits« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/inflight« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/infer-owner« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/imurmurhash« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ignore-walk« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/iconv-lite/lib« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/humanize-ms« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/https-proxy-agent« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/http-proxy-agent« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/http-cache-semantics« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/hosted-git-info« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/has« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/has-unicode« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/has-flag« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/graceful-fs« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/glob/node_modules/minimatch« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/gauge« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/function-bind« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/fs.realpath« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/fs-minipass« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/err-code« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/env-paths« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/encoding/lib« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/emoji-regex« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/delegates« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/defaults« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/debug/src« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/debug/node_modules/ms« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/console-control-strings« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/concat-map« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/columnify« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/color-name« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/color-convert« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/cmd-shim« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/clone« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/cli-table3« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/cli-columns« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/cidr-regex« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ci-info« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/chownr« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/chalk« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/cacache/lib/util« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/builtins« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/brace-expansion« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/bin-links« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/balanced-match« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/are-we-there-yet« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/archy« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/aproba« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ansi-styles« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ansi-regex« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/agentkeepalive/lib« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/agent-base« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/abbrev« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/man/man7« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/man/man5« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/man/man1« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/lib/utils/completion« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/docs/output/using-npm« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/docs/output/configuring-npm« nicht leer, wird daher nicht gelöscht
      dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/docs/output/commands« nicht leer, wird daher nicht gelöscht
      Trigger für man-db (2.9.4-2) werden verarbeitet ...
      smarthome@raspi8gb:~ $ sudo apt update
      OK:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
      OK:2 https://repos.influxdata.com/debian stable InRelease
      OK:3 https://packages.grafana.com/oss/deb stable InRelease
      OK:4 https://deb.nodesource.com/node_18.x bullseye InRelease
      OK:5 http://archive.raspberrypi.org/debian bullseye InRelease
      Paketlisten werden gelesen… Fertig
      Abhängigkeitsbaum wird aufgebaut… Fertig
      Statusinformationen werden eingelesen… Fertig
      Alle Pakete sind aktuell.
      smarthome@raspi8gb:~ $ apt policy nodejs
      nodejs:
        Installiert:           (keine)
        Installationskandidat: 18.15.0-deb-1nodesource1
        Versionstabelle:
           18.15.0-deb-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x bullseye/main armhf Packages
           12.22.12~dfsg-1~deb11u3 500
              500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
      smarthome@raspi8gb:~ $ sudo apt install nodejs
      Paketlisten werden gelesen… Fertig
      Abhängigkeitsbaum wird aufgebaut… Fertig
      Statusinformationen werden eingelesen… Fertig
      Die folgenden NEUEN Pakete werden installiert:
        nodejs
      0 aktualisiert, 1 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.
      Es müssen 25,7 MB an Archiven heruntergeladen werden.
      Nach dieser Operation werden 175 MB Plattenplatz zusätzlich benutzt.
      Holen:1 https://deb.nodesource.com/node_18.x bullseye/main armhf nodejs armhf 18.15.0-deb-1nodesource1 [25,7 MB]
      Es wurden 25,7 MB in 1 s geholt (20,3 MB/s).
      Vormals nicht ausgewähltes Paket nodejs wird gewählt.
      (Lese Datenbank ... 120993 Dateien und Verzeichnisse sind derzeit installiert.)
      Vorbereitung zum Entpacken von .../nodejs_18.15.0-deb-1nodesource1_armhf.deb ...
      Entpacken von nodejs (18.15.0-deb-1nodesource1) ...
      nodejs (18.15.0-deb-1nodesource1) wird eingerichtet ...
      Trigger für man-db (2.9.4-2) werden verarbeitet ...
      smarthome@raspi8gb:~ $ iob start
      smarthome@raspi8gb:~ $
      
      

      Es kamen viele Fehlermeldungen. Und die Abfrage der Version hat das gleiche Ergebnis. 😲

      smarthome@raspi8gb:~ $ type -P nodejs node npm npx && nodejs -v && node -v && npm -v && npx -v
      /usr/bin/nodejs
      /usr/bin/node
      /usr/bin/npm
      /usr/bin/npx
      v18.15.0
      v18.15.0
      /usr/lib/node_modules/npm/lib/cli.js:48
          throw err
          ^
      
      TypeError: Class extends value undefined is not a constructor or null
          at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js:110:44)
          at Module._compile (node:internal/modules/cjs/loader:1254:14)
          at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
          at Module.load (node:internal/modules/cjs/loader:1117:32)
          at Module._load (node:internal/modules/cjs/loader:958:12)
          at Module.require (node:internal/modules/cjs/loader:1141:19)
          at require (node:internal/modules/cjs/helpers:110:18)
          at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/agent.js:174:29)
          at Module._compile (node:internal/modules/cjs/loader:1254:14)
          at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
          at Module.load (node:internal/modules/cjs/loader:1117:32)
          at Module._load (node:internal/modules/cjs/loader:958:12)
          at Module.require (node:internal/modules/cjs/loader:1141:19)
          at require (node:internal/modules/cjs/helpers:110:18)
          at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js:7:18)
          at Module._compile (node:internal/modules/cjs/loader:1254:14)
      
      Node.js v18.15.0
      smarthome@raspi8gb:~ $
      
      

      Ist es überhaupt sinvoll so viel Textzeilen als Code anzugeben? Oder lieber als Textdatei? Ich musste etliche Zeilen entfernen, da ich das sonst nicht posten konnte.

      Intel NUC i7 64GB 1TB SSD - Proxmox - Raspi 4 8GB 500 GB SSD - Raspi 4 4GB 500GB SSD - Qnap 16TB - CCU3 - Fritz 6591 Cable - Green Cell USV 1500VA
      Sonoff CC2652P - HUE Bridge - Broadlink RM4 pro u. RM3 mini - 5 x Echo - 1 x Samsung STab 8 - 54 x HM und HMIP - 32 x Zigbee - 2 x Shelly 3EM.
      Einfach ein tolles Hobby :-)

      Thomas BraunT 1 Antwort Letzte Antwort
      0
      • JoJo58J JoJo58

        @thomas-braun sagte in Troubleshooting NodeJS update:

        sudo apt purge --autoremove nodejs* npm node-* libnode72

        Alle Befehle wie angegeben ausgeführt:

        Hinweis: »node-jschardet« wird an Stelle von »node-chardet« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-browser-process-hrtime« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-data-urls« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-decimal.js« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-domexception« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-html-encoding-sniffer« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-is-potential-custom-element-name« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-nwsapi« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-parse5« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-parse5-build-scripts« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-request-promise-native« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-saxes« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-symbol-tree« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-tr46« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-types-jsdom« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-types-parse5« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-w3c-hr-time« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-w3c-xmlserializer« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-whatwg-encoding« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-whatwg-mimetype« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-whatwg-url« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-xml-name-validator« gewählt.
        Hinweis: »node-jsdom« wird an Stelle von »node-xmlchars« gewählt.
        Hinweis: »node-json-parse-better-errors« wird an Stelle von »node-json-parse-even-better-errors« gewählt.
        Hinweis: »node-json-stable-stringify« wird an Stelle von »node-fast-json-stable-stringify« gewählt.
        Hinweis: »node-json-stable-stringify« wird an Stelle von »node-types-fast-json-stable-stringify« gewählt.
        Hinweis: »node-json-stable-stringify« wird an Stelle von »node-types-json-stable-stringify« gewählt.
        Hinweis: »node-lazy-property« wird an Stelle von »node-types-lazy-property« gewählt.
        Hinweis: »node-less« wird an Stelle von »node-image-size« gewählt.
        Hinweis: »node-less« wird an Stelle von »node-less-test-data« gewählt.
        Hinweis: »node-less« wird an Stelle von »node-less-test-import-module« gewählt.
        Hinweis: »node-leven« wird an Stelle von »node-levenary« gewählt.
        Hinweis: »node-lodash« wird an Stelle von »node-lodash-es« gewählt.
        Hinweis: »node-lodash« wird an Stelle von »node-types-lodash« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-algorithm« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-application« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-collections« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-commands« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-coreutils« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-datagrid« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-datastore« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-default-theme« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-disposable« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-domutils« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-dragdrop« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-keyboard« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-messaging« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-polling« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-properties« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-signaling« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-virtualdom« gewählt.
        Hinweis: »node-lumino« wird an Stelle von »node-lumino-widgets« gewählt.
        Hinweis: »node-marked« wird an Stelle von »node-types-marked« gewählt.
        Hinweis: »node-merge-stream« wird an Stelle von »node-types-merge-stream« gewählt.
        Hinweis: »node-micromatch« wird an Stelle von »node-types-micromatch« gewählt.
        Hinweis: »node-mime« wird an Stelle von »node-mime-db« gewählt.
        Hinweis: »node-mime« wird an Stelle von »node-mime-score« gewählt.
        Hinweis: »node-mime« wird an Stelle von »node-types-mime-db« gewählt.
        Hinweis: »node-mime-types« wird an Stelle von »node-types-mime-types« gewählt.
        Hinweis: »node-minimatch« wird an Stelle von »node-types-minimatch« gewählt.
        Hinweis: »node-minimist« wird an Stelle von »node-minimist-options« gewählt.
        Hinweis: »node-minimist« wird an Stelle von »node-types-minimist« gewählt.
        Hinweis: »node-mkdirp« wird an Stelle von »node-types-mkdirp« gewählt.
        Hinweis: »node-mocks-http« wird an Stelle von »node-node-mocks-http« gewählt.
        Hinweis: »node-ms« wird an Stelle von »node-types-ms« gewählt.
        Paket »node-parallel« ist nicht installiert, wird also auch nicht entfernt.
        Hinweis: »node-normalize-package-data« wird an Stelle von »node-types-normalize-package-data« gewählt.
        Hinweis: »node-object-assign« wird an Stelle von »node-object.assign« gewählt.
        Hinweis: »node-object-inspect« wird an Stelle von »node-types-object-inspect« gewählt.
        Hinweis: »node-on-finished« wird an Stelle von »node-finished« gewählt.
        Hinweis: »node-on-finished« wird an Stelle von »node-ee-first« gewählt.
        Hinweis: »node-optionator« wird an Stelle von »node-word-wrap« gewählt.
        Hinweis: »node-original« wird an Stelle von »node-types-original« gewählt.
        Hinweis: »node-p-limit« wird an Stelle von »node-p-try« gewählt.
        Hinweis: »node-p-limit« wird an Stelle von »node-yocto-queue« gewählt.
        Hinweis: »node-parse-json« wird an Stelle von »node-lines-and-columns« gewählt.
        Hinweis: »node-parse-json« wird an Stelle von »node-types-parse-json« gewählt.
        Hinweis: »node-pbkdf2« wird an Stelle von »node-types-pbkdf2« gewählt.
        Hinweis: »node-pegjs« wird an Stelle von »node-peg« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-buffer-writer« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-packet-reader« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-pg-connection-string« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-pg-cursor« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-pg-int8« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-pg-numeric« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-pg-pool« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-pg-types« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-pgpass« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-postgres-array« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-postgres-bytea« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-postgres-date« gewählt.
        Hinweis: »node-pg« wird an Stelle von »node-postgres-interval« gewählt.
        Hinweis: »node-postcss« wird an Stelle von »node-line-column« gewählt.
        Hinweis: »node-postcss« wird an Stelle von »node-nanoid« gewählt.
        Hinweis: »node-pre-gyp« wird an Stelle von »node-node-pre-gyp« gewählt.
        Hinweis: »node-prompts« wird an Stelle von »node-kleur« gewählt.
        Hinweis: »node-prompts« wird an Stelle von »node-sisteransi« gewählt.
        Hinweis: »node-prompts« wird an Stelle von »node-types-prompts« gewählt.
        Hinweis: »node-prop-types« wird an Stelle von »node-types-prop-types« gewählt.
        Hinweis: »node-proxy-addr« wird an Stelle von »node-forwarded« gewählt.
        Hinweis: »node-proxyquire« wird an Stelle von »node-fill-keys« gewählt.
        Hinweis: »node-proxyquire« wird an Stelle von »node-module-not-found-error« gewählt.
        Paket »node-rdf-canonize-native« ist nicht installiert, wird also auch nicht entfernt.
        Hinweis: »node-re2« wird an Stelle von »node-heya-ice« gewählt.
        Hinweis: »node-re2« wird an Stelle von »node-heya-unify« gewählt.
        Hinweis: »node-re2« wird an Stelle von »node-heya-unit« gewählt.
        Hinweis: »node-re2« wird an Stelle von »node-install-artifact-from-github« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-create-subscription« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-eslint-plugin-react-hooks« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-jest-react« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-art« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-cache« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-client« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-debug-tools« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-dom« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-fetch« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-is« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-noop-renderer« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-reconciler« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-refresh« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-server« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-shallow-renderer« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-test-renderer« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-react-transport-dom-webpack« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-scheduler« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-types-create-subscription« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-types-react« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-types-react-cache« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-types-react-devtools« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-types-react-dom« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-types-react-is« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-types-react-reconciler« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-types-react-test-renderer« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-types-scheduler« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-types-use-subscription« gewählt.
        Hinweis: »node-react« wird an Stelle von »node-use-subscription« gewählt.
        Hinweis: »node-read-pkg« wird an Stelle von »node-type-fest« gewählt.
        Hinweis: »node-redis« wird an Stelle von »node-redis-commands« gewählt.
        Hinweis: »node-redis« wird an Stelle von »node-redis-errors« gewählt.
        Hinweis: »node-redis« wird an Stelle von »node-redis-parser« gewählt.
        Hinweis: »node-replace-ext« wird an Stelle von »node-types-replace-ext« gewählt.
        Hinweis: »node-requirejs« wird an Stelle von »node-types-requirejs« gewählt.
        Hinweis: »node-resolve« wird an Stelle von »node-is-core-module« gewählt.
        Hinweis: »node-resolve« wird an Stelle von »node-object-keys« gewählt.
        Hinweis: »node-resolve« wird an Stelle von »node-path-parse« gewählt.
        Hinweis: »node-resolve« wird an Stelle von »node-types-resolve« gewählt.
        Hinweis: »node-resolve-from« wird an Stelle von »node-callsites« gewählt.
        Hinweis: »node-resolve-from« wird an Stelle von »node-parent-module« gewählt.
        Hinweis: »node-rimraf« wird an Stelle von »node-types-rimraf« gewählt.
        Hinweis: »node-safe-buffer« wird an Stelle von »node-safer-buffer« gewählt.
        Hinweis: »node-sane« wird an Stelle von »node-bser« gewählt.
        Hinweis: »node-sane« wird an Stelle von »node-capture-exit« gewählt.
        Hinweis: »node-sane« wird an Stelle von »node-cnakazawa-watch« gewählt.
        Hinweis: »node-sane« wird an Stelle von »node-exec-sh« gewählt.
        Hinweis: »node-sane« wird an Stelle von »node-fb-watchman« gewählt.
        Hinweis: »node-sane« wird an Stelle von »node-makeerror« gewählt.
        Hinweis: »node-sane« wird an Stelle von »node-node-int64« gewählt.
        Hinweis: »node-sane« wird an Stelle von »node-rsvp« gewählt.
        Hinweis: »node-sane« wird an Stelle von »node-tmpl« gewählt.
        Hinweis: »node-sane« wird an Stelle von »node-types-fb-watchman« gewählt.
        Hinweis: »node-sane« wird an Stelle von »node-types-sane« gewählt.
        Hinweis: »node-sane« wird an Stelle von »node-walker« gewählt.
        Hinweis: »node-sax« wird an Stelle von »node-types-sax« gewählt.
        Hinweis: »node-semver« wird an Stelle von »node-types-semver« gewählt.
        Hinweis: »node-sinon« wird an Stelle von »node-nise« gewählt.
        Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-commons« gewählt.
        Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-fake-timers« gewählt.
        Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-formatio« gewählt.
        Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-referee« gewählt.
        Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-referee-sinon« gewählt.
        Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-samsam« gewählt.
        Hinweis: »node-sinon« wird an Stelle von »node-sinonjs-text-encoding« gewählt.
        Hinweis: »node-sinon« wird an Stelle von »node-types-sinon« gewählt.
        Hinweis: »node-sinon« wird an Stelle von »node-types-sinonjs-fake-timers« gewählt.
        Hinweis: »node-snapdragon« wird an Stelle von »node-snapdragon-capture« gewählt.
        Hinweis: »node-snapdragon« wird an Stelle von »node-snapdragon-capture-set« gewählt.
        Hinweis: »node-source-map« wird an Stelle von »node-types-source-map« gewählt.
        Hinweis: »node-source-map-resolve« wird an Stelle von »node-atob« gewählt.
        Hinweis: »node-source-map-resolve« wird an Stelle von »node-decode-uri-component« gewählt.
        Hinweis: »node-source-map-resolve« wird an Stelle von »node-source-map-url« gewählt.
        Hinweis: »node-source-map-support« wird an Stelle von »node-types-source-map-support« gewählt.
        Hinweis: »node-spdx-license-ids« wird an Stelle von »node-get-spdx-license-ids« gewählt.
        Hinweis: »node-srs« wird an Stelle von »node-gdal-next« gewählt.
        Hinweis: »node-stack-utils« wird an Stelle von »node-types-stack-utils« gewählt.
        Hinweis: »node-static« wird an Stelle von »node-node-static« gewählt.
        Hinweis: »node-strip-indent« wird an Stelle von »node-min-indent« gewählt.
        Hinweis: »node-superagent« wird an Stelle von »node-fast-safe-stringify« gewählt.
        Hinweis: »node-supports-color« wird an Stelle von »node-types-supports-color« gewählt.
        Paket »node-nyc« ist nicht installiert, wird also auch nicht entfernt.
        Hinweis: »node-tap« wird an Stelle von »node-bind-obj-methods« gewählt.
        Hinweis: »node-tap« wird an Stelle von »node-fs-exists-cached« gewählt.
        Hinweis: »node-tap« wird an Stelle von »node-function-loop« gewählt.
        Hinweis: »node-tap« wird an Stelle von »node-own-or« gewählt.
        Hinweis: »node-tap« wird an Stelle von »node-own-or-env« gewählt.
        Hinweis: »node-tap« wird an Stelle von »node-trivial-deferred« gewählt.
        Hinweis: »node-tap« wird an Stelle von »node-tsame« gewählt.
        Hinweis: »node-tap« wird an Stelle von »node-yapool« gewählt.
        Hinweis: »node-tap-parser« wird an Stelle von »node-events-to-array« gewählt.
        Hinweis: »node-tar« wird an Stelle von »node-types-tar« gewählt.
        Hinweis: »node-tar-stream« wird an Stelle von »node-fs-constants« gewählt.
        Hinweis: »node-tar-stream« wird an Stelle von »node-types-tar-stream« gewählt.
        Hinweis: »node-through« wird an Stelle von »node-types-through« gewählt.
        Paket »node-mapnik« ist nicht installiert, wird also auch nicht entfernt.
        Hinweis: »node-to-regex« wird an Stelle von »node-regexp-tree« gewählt.
        Hinweis: »node-to-regex« wird an Stelle von »node-safe-regex« gewählt.
        Hinweis: »node-tough-cookie« wird an Stelle von »node-types-tough-cookie« gewählt.
        Hinweis: »node-tunein« wird an Stelle von »node-node-tunein« gewählt.
        Paket »node-uglify-to-browserify« ist nicht installiert, wird also auch nicht entfernt.
        Hinweis: »node-unicode-13.0.0« wird an Stelle von »node-unicode-lastest« gewählt.
        Hinweis: »node-url-parse« wird an Stelle von »node-types-url-parse« gewählt.
        Paket »node-node-uuid« ist nicht installiert, wird also auch nicht entfernt.
        Hinweis: »node-uuid« wird an Stelle von »node-types-uuid« gewählt.
        Hinweis: »node-vinyl« wird an Stelle von »node-types-vinyl« gewählt.
        Hinweis: »node-vue« wird an Stelle von »node-vue-server-renderer« gewählt.
        Hinweis: »node-vue« wird an Stelle von »node-weex-template-compiler« gewählt.
        Hinweis: »node-vue« wird an Stelle von »node-weex-vue-framework« gewählt.
        Hinweis: »node-watchpack« wird an Stelle von »node-glob-to-regexp« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-eslint-plugin-webassembly« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-wast-loader« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-ast« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-cli« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-floating-point-hex-parser« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-api-error« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-buffer« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-code-frame« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-compiler« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-flatten-ast« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-fsm« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-numbers« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-test-framework« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-testsuite-runner« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-wasm-bytecode« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-helper-wasm-section« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-ieee754« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-leb128« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-repl« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-utf8« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-validation« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wasm-edit« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wasm-gen« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wasm-opt« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wasm-parser« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wasm-text-gen« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wast-parser« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wast-printer« gewählt.
        Hinweis: »node-webassemblyjs« wird an Stelle von »node-webassemblyjs-wast-refmt« gewählt.
        Hinweis: »node-websocket« wird an Stelle von »node-bufferutil« gewählt.
        Hinweis: »node-websocket« wird an Stelle von »node-utf-8-validate« gewählt.
        Hinweis: »node-websocket« wird an Stelle von »node-yaeti« gewählt.
        Hinweis: »node-which« wird an Stelle von »node-types-which« gewählt.
        Hinweis: »node-write« wird an Stelle von »node-add-filename-increment« gewählt.
        Hinweis: »node-write« wird an Stelle von »node-strip-filename-increment« gewählt.
        Hinweis: »node-write-file-atomic« wird an Stelle von »node-types-write-file-atomic« gewählt.
        Hinweis: »node-ws« wird an Stelle von »node-wscat« gewählt.
        Hinweis: »node-yargs« wird an Stelle von »node-types-yargs« gewählt.
        Hinweis: »node-yargs-parser« wird an Stelle von »node-types-yargs-parser« gewählt.
        Hinweis: »nodeunit« wird an Stelle von »node-nodeunit« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npm« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npmcli-arborist« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npmcli-ci-detect« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npmcli-config« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npmcli-disparity-colors« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npmcli-git« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npmcli-installed-package-contents« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npmcli-map-workspaces« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npmcli-metavuln-calculator« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npmcli-name-from-folder« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npmcli-node-gyp« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npmcli-promise-spawn« gewählt.
        Hinweis: »npm« wird an Stelle von »node-npmcli-run-script« gewählt.
        Paket »node-uglifyjs« ist nicht installiert, wird also auch nicht entfernt.
        Hinweis: »rollup« wird an Stelle von »node-rollup« gewählt.
        Hinweis: »ruby-actioncable« wird an Stelle von »node-rails-actioncable« gewählt.
        Hinweis: »ruby-task-list« wird an Stelle von »node-deckar01-task-list« gewählt.
        Hinweis: »ts-jest« wird an Stelle von »node-bs-logger« gewählt.
        Hinweis: »ts-jest« wird an Stelle von »node-buffer-from« gewählt.
        Hinweis: »ts-jest« wird an Stelle von »node-ts-jest« gewählt.
        Hinweis: »ts-jest« wird an Stelle von »node-types-buffer-from« gewählt.
        Hinweis: »ts-node« wird an Stelle von »node-ts-node« gewählt.
        Hinweis: »webpack« wird an Stelle von »node-webpack« gewählt.
        Hinweis: »window-size« wird an Stelle von »node-window-size« gewählt.
        Hinweis: »yarnpkg« wird an Stelle von »node-yarn« gewählt.
        Paket »libnode72« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-abab« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-abbrev« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-absolute-path« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-abstract-leveldown« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-accepts« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-acorn« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-active-x-obfuscator« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-address« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-addressparser« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-after« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-agent-base« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ain2« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ajv« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ajv-keywords« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-almond« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-amdefine« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ansi« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ansi-align« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ansi-color-table« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ansi-colors« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ansi-escapes« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ansi-font« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ansi-regex« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ansi-styles« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ansi-up« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ansistyles« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-any-promise« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-anymatch« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ap« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-applause« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-aproba« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-archy« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-are-we-there-yet« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-arg« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-argparse« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-argv« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-arr-diff« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-arr-flatten« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-arr-union« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-array-differ« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-array-equal« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-array-find-index« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-array-flatten« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-array-from« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-array-parallel« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-array-series« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-array-union« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-array-uniq« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-array-unique« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-arrify« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-asap« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-asn1« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-asn1.js« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-assert« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-assert-plus« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-assertion-error« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-assertive« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-assume« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ast-types« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ast-util« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-astw« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-async« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-async-each« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-async-limiter« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-async-stacktrace« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-asynckit« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-auth-header« ist nicht installiert, wird also auch nicht entfernt.
        .............
        Paket »node-source-map-support« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-sourcemap-codec« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-sparkles« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-spdx-correct« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-spdx-exceptions« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-spdx-expression-parse« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-spdx-license-ids« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-sphericalmercator« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-split« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-split-string« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-split2« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-sprintf-js« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-sqlite3« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-srs« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-sshpk« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ssri« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stable« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stack-utils« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-standard-error« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-standard-http-error« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-starttls« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-static« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-static-eval« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-static-extend« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-static-module« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stats-webpack-plugin« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-statuses« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stealthy-require« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-step« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stream-array« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stream-assert« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stream-browserify« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stream-combiner2« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stream-consume« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stream-each« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stream-http« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stream-iterate« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stream-shift« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stream-splicer« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stream-to-observable« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-streamtest« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-strict-uri-encode« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-string-decoder« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-string-width« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-string.prototype.codepointat« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stringmap« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stringset« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stringstream« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-strip-ansi« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-strip-bom« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-strip-bom-stream« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-strip-eof« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-strip-indent« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-strip-json-comments« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-style-loader« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-stylus« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-subarg« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-superagent« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-supertest« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-supports-color« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-symbol-observable« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-syntax-error« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tacks« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tap« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tap-mocha-reporter« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tap-parser« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tapable« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tape« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tar« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tar-fs« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tar-pack« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tar-stream« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-telegram-bot-api« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-temp« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-temporary« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-term-size« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-terser« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-test« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-text-encoding« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-text-table« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-thenby« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-thenify« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-thenify-all« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-three-orbit-controls« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-three-stl-loader« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-through« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-through2« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-through2-filter« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tildify« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tilejson« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tilelive« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tilelive-bridge« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tilelive-mapnik« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tilelive-vector« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-time-stamp« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-time-zone« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-timeago.js« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-timed-out« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-timers-browserify« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tinycolor« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tippex« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tldjs« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tmatch« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tmp« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-to-absolute-glob« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-to-arraybuffer« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-to-fast-properties« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-to-object-path« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-to-regex« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-to-regex-range« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-toidentifier« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tough-cookie« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-transformers« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-traverse« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-trim-newlines« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-trust-json-document« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-trust-keyto« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-trust-webcrypto« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tslib« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tty-browserify« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tunein« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tunnel-agent« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-turbolinks« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-tweetnacl« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-type-check« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-type-detect« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-type-is« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-typedarray« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-typedarray-to-buffer« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-typescript« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-typescript-types« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ua-parser-js« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-uglify« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-uglify-js« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-uglify-save-license« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-uglifyjs-webpack-plugin« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-uid-number« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-uid-safe« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ultron« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-umd« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unbzip2-stream« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unc-path-regex« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-underscore« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-underscore.string« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unicode-13.0.0« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unicode-canonical-property-names-ecmascript« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unicode-loose-match« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unicode-match-property-ecmascript« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unicode-match-property-value-ecmascript« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unicode-property-aliases« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unicode-property-aliases-ecmascript« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unicode-property-value-aliases« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unicode-property-value-aliases-ecmascript« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unicode-tr51« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-union-value« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-uniq« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-uniqid« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-uniqs« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unique-filename« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unique-stream« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unique-string« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-universalify« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unorm« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unpipe« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-unset-value« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-uri-js« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-uri-path« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-url« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-url-join« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-url-loader« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-url-parse« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-url-parse-lax« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-url-to-options« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-urlgrey« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-use« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-util« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-util-deprecate« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-utilities« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-utils-merge« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-utml« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-uuid« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-v8flags« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vali-date« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-validate-npm-package-license« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-validate-npm-package-name« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-validator« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vary« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vasync« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-verror« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vhost« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vinyl« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vinyl-fs« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vinyl-sourcemaps-apply« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vlq« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vm-browserify« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vows« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vue« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vue-hot-reload-api« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vue-resource« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vue-style-loader« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-vue-template-compiler« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-watchpack« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-wcwidth.js« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-webassemblyjs« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-webfinger« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-webidl-conversions« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-webpack-merge« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-webpack-sources« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-webpack-stats-plugin« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-webrtc-adapter« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-websocket« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-websocket-driver« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-websocket-stream« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-when« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-which« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-which-module« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-wide-align« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-widest-line« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-wildemitter« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-with« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-wordwrap« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-worker-loader« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-wrap-ansi« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-wrappy« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-wrench« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-write« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-write-file-atomic« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-write-file-promise« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ws« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-xdg-basedir« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-xml2js« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-xmldom« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-xmlhttprequest« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-xmlhttprequest-ssl« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-xoauth2« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-xtend« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-xterm« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-xxhashjs« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-y18n« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-yajsml« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-yallist« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-yaml« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-yamlish« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-yargs« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-yargs-parser« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-yauzl« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-yawl« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-yazl« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-yn« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-ytdl-core« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-zen-observable« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-zeparser« ist nicht installiert, wird also auch nicht entfernt.
        Paket »node-zipfile« ist nicht installiert, wird also auch nicht entfernt.
        Paket »nodejs-doc« ist nicht installiert, wird also auch nicht entfernt.
        Paket »npm« ist nicht installiert, wird also auch nicht entfernt.
        Die folgenden Pakete werden ENTFERNT:
          nodejs*
        0 aktualisiert, 0 neu installiert, 1 zu entfernen und 0 nicht aktualisiert.
        Nach dieser Operation werden 175 MB Plattenplatz freigegeben.
        Möchten Sie fortfahren? [J/n] J
        (Lese Datenbank ... 126538 Dateien und Verzeichnisse sind derzeit installiert.)
        Entfernen von nodejs (18.15.0-deb-1nodesource1) ...
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/yallist« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/write-file-atomic« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/wrappy« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/wide-align« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/which/bin« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/wcwidth« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/validate-npm-package-name« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/validate-npm-package-license« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/util-deprecate« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/unique-slug« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/unique-filename« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/tiny-relative-date« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/text-table« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/tar/node_modules« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/tar/lib« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/supports-color« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/strip-ansi« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/string_decoder« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/string-width« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ssri« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/spdx-license-ids« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/spdx-expression-parse« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/spdx-exceptions« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/spdx-correct« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/socks/typings/common« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/socks-proxy-agent« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/smart-buffer« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/signal-exit« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/set-blocking« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/semver/bin« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/safer-buffer« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/safe-buffer« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/rimraf« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/retry« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/readable-stream/lib/internal/streams« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/read« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/read-package-json« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/read-cmd-shim« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/qrcode-terminal« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/promzard« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/promise-retry« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/promise-inflight« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/path-is-absolute« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/pacote/lib/util« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/once« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npmlog« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-user-validate« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-registry-fetch« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-profile« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-pick-manifest« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-packlist« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-package-arg« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-normalize-package-bin« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-install-checks« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-bundled« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/npm-audit-report/lib« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/normalize-package-data« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/nopt« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/node-gyp/lib« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/node-gyp/.github/workflows« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/mute-stream« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ms« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/mkdirp/bin« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/minizlib/node_modules/minipass« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/minimatch« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/make-fetch-happen« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/lru-cache« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/libnpmteam« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/libnpmsearch« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/libnpmpublish« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/libnpmorg« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/libnpmhook« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/libnpmaccess« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/jsonparse« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/json-parse-even-better-errors« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/isexe« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/is-fullwidth-code-point« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/is-cidr« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ip« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ip-regex« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/init-package-json« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ini« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/inherits« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/inflight« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/infer-owner« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/imurmurhash« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ignore-walk« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/iconv-lite/lib« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/humanize-ms« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/https-proxy-agent« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/http-proxy-agent« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/http-cache-semantics« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/hosted-git-info« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/has« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/has-unicode« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/has-flag« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/graceful-fs« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/glob/node_modules/minimatch« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/gauge« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/function-bind« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/fs.realpath« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/fs-minipass« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/err-code« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/env-paths« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/encoding/lib« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/emoji-regex« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/delegates« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/defaults« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/debug/src« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/debug/node_modules/ms« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/console-control-strings« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/concat-map« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/columnify« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/color-name« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/color-convert« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/cmd-shim« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/clone« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/cli-table3« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/cli-columns« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/cidr-regex« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ci-info« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/chownr« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/chalk« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/cacache/lib/util« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/builtins« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/brace-expansion« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/bin-links« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/balanced-match« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/are-we-there-yet« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/archy« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/aproba« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ansi-styles« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/ansi-regex« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/agentkeepalive/lib« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/agent-base« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/node_modules/abbrev« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/man/man7« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/man/man5« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/man/man1« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/lib/utils/completion« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/docs/output/using-npm« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/docs/output/configuring-npm« nicht leer, wird daher nicht gelöscht
        dpkg: Warnung: Während Entfernens von nodejs ist Verzeichnis »/usr/lib/node_modules/npm/docs/output/commands« nicht leer, wird daher nicht gelöscht
        Trigger für man-db (2.9.4-2) werden verarbeitet ...
        smarthome@raspi8gb:~ $ sudo apt update
        OK:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
        OK:2 https://repos.influxdata.com/debian stable InRelease
        OK:3 https://packages.grafana.com/oss/deb stable InRelease
        OK:4 https://deb.nodesource.com/node_18.x bullseye InRelease
        OK:5 http://archive.raspberrypi.org/debian bullseye InRelease
        Paketlisten werden gelesen… Fertig
        Abhängigkeitsbaum wird aufgebaut… Fertig
        Statusinformationen werden eingelesen… Fertig
        Alle Pakete sind aktuell.
        smarthome@raspi8gb:~ $ apt policy nodejs
        nodejs:
          Installiert:           (keine)
          Installationskandidat: 18.15.0-deb-1nodesource1
          Versionstabelle:
             18.15.0-deb-1nodesource1 500
                500 https://deb.nodesource.com/node_18.x bullseye/main armhf Packages
             12.22.12~dfsg-1~deb11u3 500
                500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
        smarthome@raspi8gb:~ $ sudo apt install nodejs
        Paketlisten werden gelesen… Fertig
        Abhängigkeitsbaum wird aufgebaut… Fertig
        Statusinformationen werden eingelesen… Fertig
        Die folgenden NEUEN Pakete werden installiert:
          nodejs
        0 aktualisiert, 1 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.
        Es müssen 25,7 MB an Archiven heruntergeladen werden.
        Nach dieser Operation werden 175 MB Plattenplatz zusätzlich benutzt.
        Holen:1 https://deb.nodesource.com/node_18.x bullseye/main armhf nodejs armhf 18.15.0-deb-1nodesource1 [25,7 MB]
        Es wurden 25,7 MB in 1 s geholt (20,3 MB/s).
        Vormals nicht ausgewähltes Paket nodejs wird gewählt.
        (Lese Datenbank ... 120993 Dateien und Verzeichnisse sind derzeit installiert.)
        Vorbereitung zum Entpacken von .../nodejs_18.15.0-deb-1nodesource1_armhf.deb ...
        Entpacken von nodejs (18.15.0-deb-1nodesource1) ...
        nodejs (18.15.0-deb-1nodesource1) wird eingerichtet ...
        Trigger für man-db (2.9.4-2) werden verarbeitet ...
        smarthome@raspi8gb:~ $ iob start
        smarthome@raspi8gb:~ $
        
        

        Es kamen viele Fehlermeldungen. Und die Abfrage der Version hat das gleiche Ergebnis. 😲

        smarthome@raspi8gb:~ $ type -P nodejs node npm npx && nodejs -v && node -v && npm -v && npx -v
        /usr/bin/nodejs
        /usr/bin/node
        /usr/bin/npm
        /usr/bin/npx
        v18.15.0
        v18.15.0
        /usr/lib/node_modules/npm/lib/cli.js:48
            throw err
            ^
        
        TypeError: Class extends value undefined is not a constructor or null
            at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js:110:44)
            at Module._compile (node:internal/modules/cjs/loader:1254:14)
            at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
            at Module.load (node:internal/modules/cjs/loader:1117:32)
            at Module._load (node:internal/modules/cjs/loader:958:12)
            at Module.require (node:internal/modules/cjs/loader:1141:19)
            at require (node:internal/modules/cjs/helpers:110:18)
            at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/agent.js:174:29)
            at Module._compile (node:internal/modules/cjs/loader:1254:14)
            at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
            at Module.load (node:internal/modules/cjs/loader:1117:32)
            at Module._load (node:internal/modules/cjs/loader:958:12)
            at Module.require (node:internal/modules/cjs/loader:1141:19)
            at require (node:internal/modules/cjs/helpers:110:18)
            at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js:7:18)
            at Module._compile (node:internal/modules/cjs/loader:1254:14)
        
        Node.js v18.15.0
        smarthome@raspi8gb:~ $
        
        

        Ist es überhaupt sinvoll so viel Textzeilen als Code anzugeben? Oder lieber als Textdatei? Ich musste etliche Zeilen entfernen, da ich das sonst nicht posten konnte.

        Thomas BraunT Online
        Thomas BraunT Online
        Thomas Braun
        Most Active
        schrieb am zuletzt editiert von
        #23

        @jojo58

        Starte den Rechner mal durch.
        Dann sortieren sich die Pfade.

        Wenn die Kiste wieder läuft.

        type -P nodejs node npm npx && nodejs -v && node -v && npm -v && npx -v
        sudo apt update
        apt policy nodejs
        

        Linux-Werkzeugkasten:
        https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
        NodeJS Fixer Skript:
        https://forum.iobroker.net/topic/68035/iob-node-fix-skript
        iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

        JoJo58J 1 Antwort Letzte Antwort
        0
        • Thomas BraunT Thomas Braun

          @jojo58

          Starte den Rechner mal durch.
          Dann sortieren sich die Pfade.

          Wenn die Kiste wieder läuft.

          type -P nodejs node npm npx && nodejs -v && node -v && npm -v && npx -v
          sudo apt update
          apt policy nodejs
          
          JoJo58J Offline
          JoJo58J Offline
          JoJo58
          schrieb am zuletzt editiert von
          #24

          @thomas-braun Neustart und auch die Befehle ausgeführt:

          smarthome@raspi8gb:~ $ type -P nodejs node npm npx && nodejs -v && node -v && npm -v && npx -v
          /usr/bin/nodejs
          /usr/bin/node
          /usr/bin/npm
          /usr/bin/npx
          v18.15.0
          v18.15.0
          /usr/lib/node_modules/npm/lib/cli.js:48
              throw err
              ^
          
          TypeError: Class extends value undefined is not a constructor or null
              at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js:110:44)
              at Module._compile (node:internal/modules/cjs/loader:1254:14)
              at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
              at Module.load (node:internal/modules/cjs/loader:1117:32)
              at Module._load (node:internal/modules/cjs/loader:958:12)
              at Module.require (node:internal/modules/cjs/loader:1141:19)
              at require (node:internal/modules/cjs/helpers:110:18)
              at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/agent.js:174:29)
              at Module._compile (node:internal/modules/cjs/loader:1254:14)
              at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
              at Module.load (node:internal/modules/cjs/loader:1117:32)
              at Module._load (node:internal/modules/cjs/loader:958:12)
              at Module.require (node:internal/modules/cjs/loader:1141:19)
              at require (node:internal/modules/cjs/helpers:110:18)
              at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js:7:18)
              at Module._compile (node:internal/modules/cjs/loader:1254:14)
          
          Node.js v18.15.0
          smarthome@raspi8gb:~ $ sudo apt update
          OK:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
          OK:2 http://archive.raspberrypi.org/debian bullseye InRelease
          OK:3 https://deb.nodesource.com/node_18.x bullseye InRelease
          OK:4 https://packages.grafana.com/oss/deb stable InRelease
          OK:5 https://repos.influxdata.com/debian stable InRelease
          Paketlisten werden gelesen… Fertig
          Abhängigkeitsbaum wird aufgebaut… Fertig
          Statusinformationen werden eingelesen… Fertig
          Alle Pakete sind aktuell.
          smarthome@raspi8gb:~ $ apt policy nodejs
          nodejs:
            Installiert:           18.15.0-deb-1nodesource1
            Installationskandidat: 18.15.0-deb-1nodesource1
            Versionstabelle:
           *** 18.15.0-deb-1nodesource1 500
                  500 https://deb.nodesource.com/node_18.x bullseye/main armhf Packages
                  100 /var/lib/dpkg/status
               12.22.12~dfsg-1~deb11u3 500
                  500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
          smarthome@raspi8gb:~ $
          
          

          Abfrage dann:

          smarthome@raspi8gb:~ $ type -P nodejs node npm npx && nodejs -v && node -v && npm -v && npx -v
          /usr/bin/nodejs
          /usr/bin/node
          /usr/bin/npm
          /usr/bin/npx
          v18.15.0
          v18.15.0
          /usr/lib/node_modules/npm/lib/cli.js:48
              throw err
              ^
          
          TypeError: Class extends value undefined is not a constructor or null
              at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js:110:44)
              at Module._compile (node:internal/modules/cjs/loader:1254:14)
              at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
              at Module.load (node:internal/modules/cjs/loader:1117:32)
              at Module._load (node:internal/modules/cjs/loader:958:12)
              at Module.require (node:internal/modules/cjs/loader:1141:19)
              at require (node:internal/modules/cjs/helpers:110:18)
              at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/agent.js:174:29)
              at Module._compile (node:internal/modules/cjs/loader:1254:14)
              at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
              at Module.load (node:internal/modules/cjs/loader:1117:32)
              at Module._load (node:internal/modules/cjs/loader:958:12)
              at Module.require (node:internal/modules/cjs/loader:1141:19)
              at require (node:internal/modules/cjs/helpers:110:18)
              at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js:7:18)
              at Module._compile (node:internal/modules/cjs/loader:1254:14)
          
          Node.js v18.15.0
          smarthome@raspi8gb:~ $
          

          Irgendwie hab ich das System wohl strubbelig gemacht. 😧

          Intel NUC i7 64GB 1TB SSD - Proxmox - Raspi 4 8GB 500 GB SSD - Raspi 4 4GB 500GB SSD - Qnap 16TB - CCU3 - Fritz 6591 Cable - Green Cell USV 1500VA
          Sonoff CC2652P - HUE Bridge - Broadlink RM4 pro u. RM3 mini - 5 x Echo - 1 x Samsung STab 8 - 54 x HM und HMIP - 32 x Zigbee - 2 x Shelly 3EM.
          Einfach ein tolles Hobby :-)

          Thomas BraunT 1 Antwort Letzte Antwort
          0
          • JoJo58J JoJo58

            @thomas-braun Neustart und auch die Befehle ausgeführt:

            smarthome@raspi8gb:~ $ type -P nodejs node npm npx && nodejs -v && node -v && npm -v && npx -v
            /usr/bin/nodejs
            /usr/bin/node
            /usr/bin/npm
            /usr/bin/npx
            v18.15.0
            v18.15.0
            /usr/lib/node_modules/npm/lib/cli.js:48
                throw err
                ^
            
            TypeError: Class extends value undefined is not a constructor or null
                at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js:110:44)
                at Module._compile (node:internal/modules/cjs/loader:1254:14)
                at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
                at Module.load (node:internal/modules/cjs/loader:1117:32)
                at Module._load (node:internal/modules/cjs/loader:958:12)
                at Module.require (node:internal/modules/cjs/loader:1141:19)
                at require (node:internal/modules/cjs/helpers:110:18)
                at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/agent.js:174:29)
                at Module._compile (node:internal/modules/cjs/loader:1254:14)
                at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
                at Module.load (node:internal/modules/cjs/loader:1117:32)
                at Module._load (node:internal/modules/cjs/loader:958:12)
                at Module.require (node:internal/modules/cjs/loader:1141:19)
                at require (node:internal/modules/cjs/helpers:110:18)
                at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js:7:18)
                at Module._compile (node:internal/modules/cjs/loader:1254:14)
            
            Node.js v18.15.0
            smarthome@raspi8gb:~ $ sudo apt update
            OK:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
            OK:2 http://archive.raspberrypi.org/debian bullseye InRelease
            OK:3 https://deb.nodesource.com/node_18.x bullseye InRelease
            OK:4 https://packages.grafana.com/oss/deb stable InRelease
            OK:5 https://repos.influxdata.com/debian stable InRelease
            Paketlisten werden gelesen… Fertig
            Abhängigkeitsbaum wird aufgebaut… Fertig
            Statusinformationen werden eingelesen… Fertig
            Alle Pakete sind aktuell.
            smarthome@raspi8gb:~ $ apt policy nodejs
            nodejs:
              Installiert:           18.15.0-deb-1nodesource1
              Installationskandidat: 18.15.0-deb-1nodesource1
              Versionstabelle:
             *** 18.15.0-deb-1nodesource1 500
                    500 https://deb.nodesource.com/node_18.x bullseye/main armhf Packages
                    100 /var/lib/dpkg/status
                 12.22.12~dfsg-1~deb11u3 500
                    500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
            smarthome@raspi8gb:~ $
            
            

            Abfrage dann:

            smarthome@raspi8gb:~ $ type -P nodejs node npm npx && nodejs -v && node -v && npm -v && npx -v
            /usr/bin/nodejs
            /usr/bin/node
            /usr/bin/npm
            /usr/bin/npx
            v18.15.0
            v18.15.0
            /usr/lib/node_modules/npm/lib/cli.js:48
                throw err
                ^
            
            TypeError: Class extends value undefined is not a constructor or null
                at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js:110:44)
                at Module._compile (node:internal/modules/cjs/loader:1254:14)
                at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
                at Module.load (node:internal/modules/cjs/loader:1117:32)
                at Module._load (node:internal/modules/cjs/loader:958:12)
                at Module.require (node:internal/modules/cjs/loader:1141:19)
                at require (node:internal/modules/cjs/helpers:110:18)
                at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/agent.js:174:29)
                at Module._compile (node:internal/modules/cjs/loader:1254:14)
                at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
                at Module.load (node:internal/modules/cjs/loader:1117:32)
                at Module._load (node:internal/modules/cjs/loader:958:12)
                at Module.require (node:internal/modules/cjs/loader:1141:19)
                at require (node:internal/modules/cjs/helpers:110:18)
                at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js:7:18)
                at Module._compile (node:internal/modules/cjs/loader:1254:14)
            
            Node.js v18.15.0
            smarthome@raspi8gb:~ $
            

            Irgendwie hab ich das System wohl strubbelig gemacht. 😧

            Thomas BraunT Online
            Thomas BraunT Online
            Thomas Braun
            Most Active
            schrieb am zuletzt editiert von
            #25

            @jojo58 sagte in Troubleshooting NodeJS update:

            Node.js v18.15.0

            Trägst du die Zeile 30 von Hand ein?
            Vom System müsste eigentlich was anderes kommen.

            Linux-Werkzeugkasten:
            https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
            NodeJS Fixer Skript:
            https://forum.iobroker.net/topic/68035/iob-node-fix-skript
            iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

            JoJo58J 1 Antwort Letzte Antwort
            0
            • Thomas BraunT Thomas Braun

              @jojo58 sagte in Troubleshooting NodeJS update:

              Node.js v18.15.0

              Trägst du die Zeile 30 von Hand ein?
              Vom System müsste eigentlich was anderes kommen.

              JoJo58J Offline
              JoJo58J Offline
              JoJo58
              schrieb am zuletzt editiert von
              #26

              @thomas-braun Nein, ist von der Ausgabe, ändere da nichts.

              Intel NUC i7 64GB 1TB SSD - Proxmox - Raspi 4 8GB 500 GB SSD - Raspi 4 4GB 500GB SSD - Qnap 16TB - CCU3 - Fritz 6591 Cable - Green Cell USV 1500VA
              Sonoff CC2652P - HUE Bridge - Broadlink RM4 pro u. RM3 mini - 5 x Echo - 1 x Samsung STab 8 - 54 x HM und HMIP - 32 x Zigbee - 2 x Shelly 3EM.
              Einfach ein tolles Hobby :-)

              Thomas BraunT 1 Antwort Letzte Antwort
              0
              • JoJo58J JoJo58

                @thomas-braun Nein, ist von der Ausgabe, ändere da nichts.

                Thomas BraunT Online
                Thomas BraunT Online
                Thomas Braun
                Most Active
                schrieb am zuletzt editiert von
                #27

                @jojo58

                apt policy libnode* npm nodejs
                

                sagt?

                Linux-Werkzeugkasten:
                https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                NodeJS Fixer Skript:
                https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                JoJo58J 1 Antwort Letzte Antwort
                0
                • Thomas BraunT Thomas Braun

                  @jojo58

                  apt policy libnode* npm nodejs
                  

                  sagt?

                  JoJo58J Offline
                  JoJo58J Offline
                  JoJo58
                  schrieb am zuletzt editiert von
                  #28

                  @thomas-braun sagte in Troubleshooting NodeJS update:

                  apt policy libnode* npm nodejs

                  smarthome@raspi8gb:~ $ apt policy libnode* npm nodejs
                  libnodeletlib-dev:
                    Installiert:           (keine)
                    Installationskandidat: 1.10.0-3
                    Versionstabelle:
                       1.10.0-3 500
                          500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                  libnodeletlib1d:
                    Installiert:           (keine)
                    Installationskandidat: 1.10.0-3
                    Versionstabelle:
                       1.10.0-3 500
                          500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                  libnode64:
                    Installiert:           (keine)
                    Installationskandidat: (keine)
                    Versionstabelle:
                  libnode72:
                    Installiert:           (keine)
                    Installationskandidat: 12.22.12~dfsg-1~deb11u3
                    Versionstabelle:
                       12.22.12~dfsg-1~deb11u3 500
                          500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                  libnodelet-dev:
                    Installiert:           (keine)
                    Installationskandidat: 1.10.0-3
                    Versionstabelle:
                       1.10.0-3 500
                          500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                  libnodeletlib-tools:
                    Installiert:           (keine)
                    Installationskandidat: 1.10.0-3
                    Versionstabelle:
                       1.10.0-3 500
                          500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                  libnode-dev:
                    Installiert:           (keine)
                    Installationskandidat: 12.22.12~dfsg-1~deb11u3
                    Versionstabelle:
                       12.22.12~dfsg-1~deb11u3 500
                          500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                  libnodelet-topic-tools-dev:
                    Installiert:           (keine)
                    Installationskandidat: 1.10.0-3
                    Versionstabelle:
                       1.10.0-3 500
                          500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                  npm:
                    Installiert:           (keine)
                    Installationskandidat: 7.5.2+ds-2
                    Versionstabelle:
                       7.5.2+ds-2 500
                          500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                  nodejs:
                    Installiert:           18.15.0-deb-1nodesource1
                    Installationskandidat: 18.15.0-deb-1nodesource1
                    Versionstabelle:
                   *** 18.15.0-deb-1nodesource1 500
                          500 https://deb.nodesource.com/node_18.x bullseye/main armhf Packages
                          100 /var/lib/dpkg/status
                       12.22.12~dfsg-1~deb11u3 500
                          500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                  smarthome@raspi8gb:~ $
                  
                  

                  Intel NUC i7 64GB 1TB SSD - Proxmox - Raspi 4 8GB 500 GB SSD - Raspi 4 4GB 500GB SSD - Qnap 16TB - CCU3 - Fritz 6591 Cable - Green Cell USV 1500VA
                  Sonoff CC2652P - HUE Bridge - Broadlink RM4 pro u. RM3 mini - 5 x Echo - 1 x Samsung STab 8 - 54 x HM und HMIP - 32 x Zigbee - 2 x Shelly 3EM.
                  Einfach ein tolles Hobby :-)

                  Thomas BraunT 1 Antwort Letzte Antwort
                  0
                  • JoJo58J JoJo58

                    @thomas-braun sagte in Troubleshooting NodeJS update:

                    apt policy libnode* npm nodejs

                    smarthome@raspi8gb:~ $ apt policy libnode* npm nodejs
                    libnodeletlib-dev:
                      Installiert:           (keine)
                      Installationskandidat: 1.10.0-3
                      Versionstabelle:
                         1.10.0-3 500
                            500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                    libnodeletlib1d:
                      Installiert:           (keine)
                      Installationskandidat: 1.10.0-3
                      Versionstabelle:
                         1.10.0-3 500
                            500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                    libnode64:
                      Installiert:           (keine)
                      Installationskandidat: (keine)
                      Versionstabelle:
                    libnode72:
                      Installiert:           (keine)
                      Installationskandidat: 12.22.12~dfsg-1~deb11u3
                      Versionstabelle:
                         12.22.12~dfsg-1~deb11u3 500
                            500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                    libnodelet-dev:
                      Installiert:           (keine)
                      Installationskandidat: 1.10.0-3
                      Versionstabelle:
                         1.10.0-3 500
                            500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                    libnodeletlib-tools:
                      Installiert:           (keine)
                      Installationskandidat: 1.10.0-3
                      Versionstabelle:
                         1.10.0-3 500
                            500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                    libnode-dev:
                      Installiert:           (keine)
                      Installationskandidat: 12.22.12~dfsg-1~deb11u3
                      Versionstabelle:
                         12.22.12~dfsg-1~deb11u3 500
                            500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                    libnodelet-topic-tools-dev:
                      Installiert:           (keine)
                      Installationskandidat: 1.10.0-3
                      Versionstabelle:
                         1.10.0-3 500
                            500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                    npm:
                      Installiert:           (keine)
                      Installationskandidat: 7.5.2+ds-2
                      Versionstabelle:
                         7.5.2+ds-2 500
                            500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                    nodejs:
                      Installiert:           18.15.0-deb-1nodesource1
                      Installationskandidat: 18.15.0-deb-1nodesource1
                      Versionstabelle:
                     *** 18.15.0-deb-1nodesource1 500
                            500 https://deb.nodesource.com/node_18.x bullseye/main armhf Packages
                            100 /var/lib/dpkg/status
                         12.22.12~dfsg-1~deb11u3 500
                            500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                    smarthome@raspi8gb:~ $
                    
                    
                    Thomas BraunT Online
                    Thomas BraunT Online
                    Thomas Braun
                    Most Active
                    schrieb am zuletzt editiert von
                    #29

                    @jojo58

                    iob stop
                    sudo apt update
                    sudo apt install --reinstall nodejs
                    sudo reboot
                    

                    Linux-Werkzeugkasten:
                    https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                    NodeJS Fixer Skript:
                    https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                    iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                    JoJo58J 1 Antwort Letzte Antwort
                    0
                    • Thomas BraunT Thomas Braun

                      @jojo58

                      iob stop
                      sudo apt update
                      sudo apt install --reinstall nodejs
                      sudo reboot
                      
                      JoJo58J Offline
                      JoJo58J Offline
                      JoJo58
                      schrieb am zuletzt editiert von
                      #30

                      @thomas-braun sagte in Troubleshooting NodeJS update:

                      sudo apt install --reinstall nodejs

                      smarthome@raspi8gb:~ $ iob stop
                      smarthome@raspi8gb:~ $ sudo apt update
                      OK:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
                      OK:2 http://archive.raspberrypi.org/debian bullseye InRelease
                      OK:3 https://repos.influxdata.com/debian stable InRelease
                      OK:4 https://packages.grafana.com/oss/deb stable InRelease
                      OK:5 https://deb.nodesource.com/node_18.x bullseye InRelease
                      Paketlisten werden gelesen… Fertig
                      Abhängigkeitsbaum wird aufgebaut… Fertig
                      Statusinformationen werden eingelesen… Fertig
                      Alle Pakete sind aktuell.
                      smarthome@raspi8gb:~ $ sudo apt install --reinstall nodejs
                      Paketlisten werden gelesen… Fertig
                      Abhängigkeitsbaum wird aufgebaut… Fertig
                      Statusinformationen werden eingelesen… Fertig
                      0 aktualisiert, 0 neu installiert, 1 erneut installiert, 0 zu entfernen und 0 nicht aktualisiert.
                      Es müssen 25,7 MB an Archiven heruntergeladen werden.
                      Nach dieser Operation werden 0 B Plattenplatz zusätzlich benutzt.
                      Holen:1 https://deb.nodesource.com/node_18.x bullseye/main armhf nodejs armhf 18.15.0-deb-1nodesource1 [25,7 MB]
                      Es wurden 25,7 MB in 1 s geholt (18,6 MB/s).
                      (Lese Datenbank ... 126538 Dateien und Verzeichnisse sind derzeit installiert.)
                      Vorbereitung zum Entpacken von .../nodejs_18.15.0-deb-1nodesource1_armhf.deb ...
                      Entpacken von nodejs (18.15.0-deb-1nodesource1) über (18.15.0-deb-1nodesource1) ...
                      nodejs (18.15.0-deb-1nodesource1) wird eingerichtet ...
                      Trigger für man-db (2.9.4-2) werden verarbeitet ...
                      smarthome@raspi8gb:~ $
                      

                      Ergebnis nach Neustart ist das Gleiche:

                      smarthome@raspi8gb:~ $ type -P nodejs node npm npx && nodejs -v && node -v && npm -v && npx -v
                      /usr/bin/nodejs
                      /usr/bin/node
                      /usr/bin/npm
                      /usr/bin/npx
                      v18.15.0
                      v18.15.0
                      /usr/lib/node_modules/npm/lib/cli.js:48
                          throw err
                          ^
                      
                      TypeError: Class extends value undefined is not a constructor or null
                          at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js:110:44)
                          at Module._compile (node:internal/modules/cjs/loader:1254:14)
                          at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
                          at Module.load (node:internal/modules/cjs/loader:1117:32)
                          at Module._load (node:internal/modules/cjs/loader:958:12)
                          at Module.require (node:internal/modules/cjs/loader:1141:19)
                          at require (node:internal/modules/cjs/helpers:110:18)
                          at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/agent.js:174:29)
                          at Module._compile (node:internal/modules/cjs/loader:1254:14)
                          at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
                          at Module.load (node:internal/modules/cjs/loader:1117:32)
                          at Module._load (node:internal/modules/cjs/loader:958:12)
                          at Module.require (node:internal/modules/cjs/loader:1141:19)
                          at require (node:internal/modules/cjs/helpers:110:18)
                          at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js:7:18)
                          at Module._compile (node:internal/modules/cjs/loader:1254:14)
                      
                      Node.js v18.15.0
                      smarthome@raspi8gb:~ $
                      
                      

                      Intel NUC i7 64GB 1TB SSD - Proxmox - Raspi 4 8GB 500 GB SSD - Raspi 4 4GB 500GB SSD - Qnap 16TB - CCU3 - Fritz 6591 Cable - Green Cell USV 1500VA
                      Sonoff CC2652P - HUE Bridge - Broadlink RM4 pro u. RM3 mini - 5 x Echo - 1 x Samsung STab 8 - 54 x HM und HMIP - 32 x Zigbee - 2 x Shelly 3EM.
                      Einfach ein tolles Hobby :-)

                      JoJo58J 1 Antwort Letzte Antwort
                      0
                      • JoJo58J JoJo58

                        @thomas-braun sagte in Troubleshooting NodeJS update:

                        sudo apt install --reinstall nodejs

                        smarthome@raspi8gb:~ $ iob stop
                        smarthome@raspi8gb:~ $ sudo apt update
                        OK:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
                        OK:2 http://archive.raspberrypi.org/debian bullseye InRelease
                        OK:3 https://repos.influxdata.com/debian stable InRelease
                        OK:4 https://packages.grafana.com/oss/deb stable InRelease
                        OK:5 https://deb.nodesource.com/node_18.x bullseye InRelease
                        Paketlisten werden gelesen… Fertig
                        Abhängigkeitsbaum wird aufgebaut… Fertig
                        Statusinformationen werden eingelesen… Fertig
                        Alle Pakete sind aktuell.
                        smarthome@raspi8gb:~ $ sudo apt install --reinstall nodejs
                        Paketlisten werden gelesen… Fertig
                        Abhängigkeitsbaum wird aufgebaut… Fertig
                        Statusinformationen werden eingelesen… Fertig
                        0 aktualisiert, 0 neu installiert, 1 erneut installiert, 0 zu entfernen und 0 nicht aktualisiert.
                        Es müssen 25,7 MB an Archiven heruntergeladen werden.
                        Nach dieser Operation werden 0 B Plattenplatz zusätzlich benutzt.
                        Holen:1 https://deb.nodesource.com/node_18.x bullseye/main armhf nodejs armhf 18.15.0-deb-1nodesource1 [25,7 MB]
                        Es wurden 25,7 MB in 1 s geholt (18,6 MB/s).
                        (Lese Datenbank ... 126538 Dateien und Verzeichnisse sind derzeit installiert.)
                        Vorbereitung zum Entpacken von .../nodejs_18.15.0-deb-1nodesource1_armhf.deb ...
                        Entpacken von nodejs (18.15.0-deb-1nodesource1) über (18.15.0-deb-1nodesource1) ...
                        nodejs (18.15.0-deb-1nodesource1) wird eingerichtet ...
                        Trigger für man-db (2.9.4-2) werden verarbeitet ...
                        smarthome@raspi8gb:~ $
                        

                        Ergebnis nach Neustart ist das Gleiche:

                        smarthome@raspi8gb:~ $ type -P nodejs node npm npx && nodejs -v && node -v && npm -v && npx -v
                        /usr/bin/nodejs
                        /usr/bin/node
                        /usr/bin/npm
                        /usr/bin/npx
                        v18.15.0
                        v18.15.0
                        /usr/lib/node_modules/npm/lib/cli.js:48
                            throw err
                            ^
                        
                        TypeError: Class extends value undefined is not a constructor or null
                            at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js:110:44)
                            at Module._compile (node:internal/modules/cjs/loader:1254:14)
                            at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
                            at Module.load (node:internal/modules/cjs/loader:1117:32)
                            at Module._load (node:internal/modules/cjs/loader:958:12)
                            at Module.require (node:internal/modules/cjs/loader:1141:19)
                            at require (node:internal/modules/cjs/helpers:110:18)
                            at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/agent.js:174:29)
                            at Module._compile (node:internal/modules/cjs/loader:1254:14)
                            at Module._extensions..js (node:internal/modules/cjs/loader:1308:10)
                            at Module.load (node:internal/modules/cjs/loader:1117:32)
                            at Module._load (node:internal/modules/cjs/loader:958:12)
                            at Module.require (node:internal/modules/cjs/loader:1141:19)
                            at require (node:internal/modules/cjs/helpers:110:18)
                            at Object.<anonymous> (/usr/lib/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js:7:18)
                            at Module._compile (node:internal/modules/cjs/loader:1254:14)
                        
                        Node.js v18.15.0
                        smarthome@raspi8gb:~ $
                        
                        
                        JoJo58J Offline
                        JoJo58J Offline
                        JoJo58
                        schrieb am zuletzt editiert von
                        #31

                        Habe gerade in meiner Minidoku gesehen, dass ich die nodejs Version 19.7 wohl falsch installiert habe. Hatte die Anleitung im Netz gefunden und mich danach gerichtet. Diese Schritte hatte ich mir aufgeschrieben:

                        https://nodejs.org/dist/latest
                        node-v19.7.0-linux-armv7l.tar.gz
                        wget https://nodejs.org/dist/latest/node-v19.7.0-linux-armv7l.tar.gz
                        tar -xzf node-v19.7.0-linux-armv7l.tar.gz
                        cd node-v19.7.0-linux-armv7l/
                        sudo cp -R * /usr/local/

                        …und damit ist die Installation abgeschlossen

                        Kann das damit Zusammenhängen?

                        Intel NUC i7 64GB 1TB SSD - Proxmox - Raspi 4 8GB 500 GB SSD - Raspi 4 4GB 500GB SSD - Qnap 16TB - CCU3 - Fritz 6591 Cable - Green Cell USV 1500VA
                        Sonoff CC2652P - HUE Bridge - Broadlink RM4 pro u. RM3 mini - 5 x Echo - 1 x Samsung STab 8 - 54 x HM und HMIP - 32 x Zigbee - 2 x Shelly 3EM.
                        Einfach ein tolles Hobby :-)

                        Thomas BraunT 2 Antworten Letzte Antwort
                        0
                        • JoJo58J JoJo58

                          Habe gerade in meiner Minidoku gesehen, dass ich die nodejs Version 19.7 wohl falsch installiert habe. Hatte die Anleitung im Netz gefunden und mich danach gerichtet. Diese Schritte hatte ich mir aufgeschrieben:

                          https://nodejs.org/dist/latest
                          node-v19.7.0-linux-armv7l.tar.gz
                          wget https://nodejs.org/dist/latest/node-v19.7.0-linux-armv7l.tar.gz
                          tar -xzf node-v19.7.0-linux-armv7l.tar.gz
                          cd node-v19.7.0-linux-armv7l/
                          sudo cp -R * /usr/local/

                          …und damit ist die Installation abgeschlossen

                          Kann das damit Zusammenhängen?

                          Thomas BraunT Online
                          Thomas BraunT Online
                          Thomas Braun
                          Most Active
                          schrieb am zuletzt editiert von Thomas Braun
                          #32

                          @jojo58 sagte in Troubleshooting NodeJS update:

                          Kann das damit Zusammenhängen?

                          Ja, das ist nämlich eine Murks-'Anleitung'!
                          Das macht man nie, nie, nie so, wenn man einen Paketmanager zur Hand hat, der das alles viel besser auflösen kann.

                          Mit apt würde das so aussehen:

                          echad@chet:~ $ apt policy nodejs
                          nodejs:
                            Installed: 19.8.1-deb-1nodesource1
                            Candidate: 19.8.1-deb-1nodesource1
                            Version table:
                           *** 19.8.1-deb-1nodesource1 500
                                  500 https://deb.nodesource.com/node_19.x bookworm/main arm64 Packages
                                  100 /var/lib/dpkg/status
                               18.15.0-deb-1nodesource1 500
                                  500 https://deb.nodesource.com/node_18.x bookworm/main arm64 Packages
                               18.13.0+dfsg1-1 500
                                  500 http://deb.debian.org/debian bookworm/main arm64 Packages
                               16.19.1-deb-1nodesource1 500
                                  500 https://deb.nodesource.com/node_16.x bookworm/main arm64 Packages
                          echad@chet:~ $
                          

                          NodeJS19 ganz sauber in aktueller Version richtig serviert.
                          Davon abgesehen dass nodejs19 keine Version ist, die man in einem Produktivsystem haben will. Ist nur für Entwickler und zum Beta-Testen vorgesehen.

                          Linux-Werkzeugkasten:
                          https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                          NodeJS Fixer Skript:
                          https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                          iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                          1 Antwort Letzte Antwort
                          0
                          • JoJo58J JoJo58

                            Habe gerade in meiner Minidoku gesehen, dass ich die nodejs Version 19.7 wohl falsch installiert habe. Hatte die Anleitung im Netz gefunden und mich danach gerichtet. Diese Schritte hatte ich mir aufgeschrieben:

                            https://nodejs.org/dist/latest
                            node-v19.7.0-linux-armv7l.tar.gz
                            wget https://nodejs.org/dist/latest/node-v19.7.0-linux-armv7l.tar.gz
                            tar -xzf node-v19.7.0-linux-armv7l.tar.gz
                            cd node-v19.7.0-linux-armv7l/
                            sudo cp -R * /usr/local/

                            …und damit ist die Installation abgeschlossen

                            Kann das damit Zusammenhängen?

                            Thomas BraunT Online
                            Thomas BraunT Online
                            Thomas Braun
                            Most Active
                            schrieb am zuletzt editiert von Thomas Braun
                            #33

                            @jojo58 sagte in Troubleshooting NodeJS update:

                            Jetzt musst du den Inhalt des tar-Files sauber aus

                            /usr/local/

                            herauskratzen. Viel Spaß dabei.

                            In Anbetracht der Tatsache, dass da wohl auch noch anderes nodejs-Zeug irgendwie in das System geprügelt wurde:

                            Installier es neu und verwende tunlichst deinen Paketmanager, wenn du zusätzliche Software installierst. Und lass bei nodejs die Finger von ungeraden Versionsnummern.

                            Linux-Werkzeugkasten:
                            https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                            NodeJS Fixer Skript:
                            https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                            iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                            JoJo58J 1 Antwort Letzte Antwort
                            0
                            • Thomas BraunT Thomas Braun

                              @jojo58 sagte in Troubleshooting NodeJS update:

                              Jetzt musst du den Inhalt des tar-Files sauber aus

                              /usr/local/

                              herauskratzen. Viel Spaß dabei.

                              In Anbetracht der Tatsache, dass da wohl auch noch anderes nodejs-Zeug irgendwie in das System geprügelt wurde:

                              Installier es neu und verwende tunlichst deinen Paketmanager, wenn du zusätzliche Software installierst. Und lass bei nodejs die Finger von ungeraden Versionsnummern.

                              JoJo58J Offline
                              JoJo58J Offline
                              JoJo58
                              schrieb am zuletzt editiert von
                              #34

                              @thomas-braun Du meinst also ich soll den RaspBerry neu installieren, die Updates machen, IoBroker, Grafana und InfluxDB neu installieren und dann die Backups der drei zurückspielen?

                              Intel NUC i7 64GB 1TB SSD - Proxmox - Raspi 4 8GB 500 GB SSD - Raspi 4 4GB 500GB SSD - Qnap 16TB - CCU3 - Fritz 6591 Cable - Green Cell USV 1500VA
                              Sonoff CC2652P - HUE Bridge - Broadlink RM4 pro u. RM3 mini - 5 x Echo - 1 x Samsung STab 8 - 54 x HM und HMIP - 32 x Zigbee - 2 x Shelly 3EM.
                              Einfach ein tolles Hobby :-)

                              Thomas BraunT 1 Antwort Letzte Antwort
                              0
                              • JoJo58J JoJo58

                                @thomas-braun Du meinst also ich soll den RaspBerry neu installieren, die Updates machen, IoBroker, Grafana und InfluxDB neu installieren und dann die Backups der drei zurückspielen?

                                Thomas BraunT Online
                                Thomas BraunT Online
                                Thomas Braun
                                Most Active
                                schrieb am zuletzt editiert von Thomas Braun
                                #35

                                @jojo58

                                Ich würd es auf eine saubere Basis setzen.
                                Mit vorhandenen Backups 'ne Sache von 'ner Stunde.

                                Linux-Werkzeugkasten:
                                https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                NodeJS Fixer Skript:
                                https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                JoJo58J 1 Antwort Letzte Antwort
                                0
                                • Thomas BraunT Thomas Braun

                                  @jojo58

                                  Ich würd es auf eine saubere Basis setzen.
                                  Mit vorhandenen Backups 'ne Sache von 'ner Stunde.

                                  JoJo58J Offline
                                  JoJo58J Offline
                                  JoJo58
                                  schrieb am zuletzt editiert von
                                  #36

                                  @thomas-braun sagte in Troubleshooting NodeJS update:

                                  Mit vorhandenen Backups 'ne Sache von 'ner Stunde.

                                  Okay, ich hab 1,5 Stunden gebraucht (bin auch schon etwas älter 😊 ) und hatte ein paar kleinere Problemchen, aber jetztz läuft wieder alles. Mir fehlen jetzt zwar Aufzeichnungen von Datenpunkten, aber damit muss ich halt leben. Zumindest nodejs ist jetzt sauber drauf:

                                  smarthome@raspi8gb:~ $ sudo ln -s /usr/bin/node /usr/bin/nodejs &> /dev/null
                                  smarthome@raspi8gb:~ $ type -P nodejs node npm npx && nodejs -v && node -v && npm -v && npx -v
                                  /usr/bin/nodejs
                                  /usr/bin/node
                                  /usr/bin/npm
                                  /usr/bin/npx
                                  v18.15.0
                                  v18.15.0
                                  9.5.0
                                  9.5.0
                                  smarthome@raspi8gb:~ $
                                  
                                  

                                  Vielen Dank für deine Hilfe, ich hab viel gelernt und werde auch das mit der ungeraden Version nie mehr vergessen. 👍

                                  Intel NUC i7 64GB 1TB SSD - Proxmox - Raspi 4 8GB 500 GB SSD - Raspi 4 4GB 500GB SSD - Qnap 16TB - CCU3 - Fritz 6591 Cable - Green Cell USV 1500VA
                                  Sonoff CC2652P - HUE Bridge - Broadlink RM4 pro u. RM3 mini - 5 x Echo - 1 x Samsung STab 8 - 54 x HM und HMIP - 32 x Zigbee - 2 x Shelly 3EM.
                                  Einfach ein tolles Hobby :-)

                                  1 Antwort Letzte Antwort
                                  1
                                  • KnallochseK Nicht stören
                                    KnallochseK Nicht stören
                                    Knallochse
                                    schrieb am zuletzt editiert von
                                    #37

                                    Eine Installation des Adapters vofo-speedtest unter Node Version 18.15.0 ist leider nicht mehr möglich.

                                    $ iobroker add vofo-speedtest auto --host buanet-iobroker1 --debug
                                    
                                    NPM version: 9.5.0
                                    
                                    Installing iobroker.vofo-speedtest@0.0.13... (System call)
                                    
                                    npm ERR! code 1
                                    
                                    npm ERR! gyp info spawn args '-f',npm ERR! gyp info spawn args 'make',npm ERR! gyp info spawn args '-I',npm ERR! gyp info spawn args '/opt/iobroker/node_modules/node-libcurl/build/config.gypi',npm ERR! gyp info spawn args '-I',npm ERR! gyp info spawn args '/usr/lib/node_modules/npm/node_modules/node-gyp/addon.gypi',npm ERR! gyp info spawn args '-I',npm ERR! gyp info spawn args '/opt/iobroker/.cache/node-gyp/18.15.0/include/node/common.gypi',npm ERR! gyp info spawn args '-Dlibrary=shared_library',npm ERR! gyp info spawn args '-Dvisibility=default',npm ERR! gyp info spawn args '-Dnode_root_dir=/opt/iobroker/.cache/node-gyp/18.15.0',npm ERR! gyp info spawn args '-Dnode_gyp_dir=/usr/lib/node_modules/npm/node_modules/node-gyp',npm ERR! gyp info spawn args '-Dnode_lib_file=/opt/iobroker/.cache/node-gyp/18.15.0/<(target_arch)/node.lib',npm ERR! gyp info spawn args '-Dmodule_root_dir=/opt/iobroker/node_modules/node-libcurl',npm ERR! gyp info spawn args '-Dnode_engine=v8',npm ERR! gyp info spawn args '--depth=.',npm ERR! gyp info spawn args '--no-parallel',npm ERR! gyp info spawn args '--generator-output',npm ERR! gyp info spawn args 'build',npm ERR! gyp info spawn args '-Goutput_dir=.'npm ERR! gyp info spawn args ]npm ERR! Could not run curl-config, please make sure libcurl dev package is installed.
                                    
                                    npm ERR! A complete log of this run can be found in:npm ERR! /opt/iobroker/.npm/_logs/2023-04-04T09_56_47_982Z-debug-0.log
                                    
                                    host.buanet-iobroker1 Cannot install iobroker.vofo-speedtest@0.0.13: 1
                                    
                                    ERROR: Process exited with code 25
                                    

                                    Github Issues dazu

                                    HM&HMIP über 100 Geräte + IoBroker auf DS918+ uvm.

                                    Thomas BraunT 1 Antwort Letzte Antwort
                                    0
                                    • KnallochseK Knallochse

                                      Eine Installation des Adapters vofo-speedtest unter Node Version 18.15.0 ist leider nicht mehr möglich.

                                      $ iobroker add vofo-speedtest auto --host buanet-iobroker1 --debug
                                      
                                      NPM version: 9.5.0
                                      
                                      Installing iobroker.vofo-speedtest@0.0.13... (System call)
                                      
                                      npm ERR! code 1
                                      
                                      npm ERR! gyp info spawn args '-f',npm ERR! gyp info spawn args 'make',npm ERR! gyp info spawn args '-I',npm ERR! gyp info spawn args '/opt/iobroker/node_modules/node-libcurl/build/config.gypi',npm ERR! gyp info spawn args '-I',npm ERR! gyp info spawn args '/usr/lib/node_modules/npm/node_modules/node-gyp/addon.gypi',npm ERR! gyp info spawn args '-I',npm ERR! gyp info spawn args '/opt/iobroker/.cache/node-gyp/18.15.0/include/node/common.gypi',npm ERR! gyp info spawn args '-Dlibrary=shared_library',npm ERR! gyp info spawn args '-Dvisibility=default',npm ERR! gyp info spawn args '-Dnode_root_dir=/opt/iobroker/.cache/node-gyp/18.15.0',npm ERR! gyp info spawn args '-Dnode_gyp_dir=/usr/lib/node_modules/npm/node_modules/node-gyp',npm ERR! gyp info spawn args '-Dnode_lib_file=/opt/iobroker/.cache/node-gyp/18.15.0/<(target_arch)/node.lib',npm ERR! gyp info spawn args '-Dmodule_root_dir=/opt/iobroker/node_modules/node-libcurl',npm ERR! gyp info spawn args '-Dnode_engine=v8',npm ERR! gyp info spawn args '--depth=.',npm ERR! gyp info spawn args '--no-parallel',npm ERR! gyp info spawn args '--generator-output',npm ERR! gyp info spawn args 'build',npm ERR! gyp info spawn args '-Goutput_dir=.'npm ERR! gyp info spawn args ]npm ERR! Could not run curl-config, please make sure libcurl dev package is installed.
                                      
                                      npm ERR! A complete log of this run can be found in:npm ERR! /opt/iobroker/.npm/_logs/2023-04-04T09_56_47_982Z-debug-0.log
                                      
                                      host.buanet-iobroker1 Cannot install iobroker.vofo-speedtest@0.0.13: 1
                                      
                                      ERROR: Process exited with code 25
                                      

                                      Github Issues dazu

                                      Thomas BraunT Online
                                      Thomas BraunT Online
                                      Thomas Braun
                                      Most Active
                                      schrieb am zuletzt editiert von Thomas Braun
                                      #38

                                      @knallochse sagte in Troubleshooting NodeJS update:

                                      Could not run curl-config, please make sure libcurl dev package is installed.

                                      Schau mal ob das installiert ist. Wobei mich die Abhängigkeit von libcurl-dev irritiert...
                                      Das dürfte eher kein Problem von/mit nodejs sein.

                                      sudo apt update
                                      apt policy libcurl4-gnutls-dev libcurl4-nss-dev libcurl4-openssl-dev
                                      

                                      sagt?

                                      Linux-Werkzeugkasten:
                                      https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                      NodeJS Fixer Skript:
                                      https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                      iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                      Thomas BraunT 1 Antwort Letzte Antwort
                                      0
                                      • KnallochseK Nicht stören
                                        KnallochseK Nicht stören
                                        Knallochse
                                        schrieb am zuletzt editiert von
                                        #39

                                        @thomas-braun sagte in Troubleshooting NodeJS update:

                                        apt policy libcurl4-gnutls-dev libcurl4-nss-dev libcurl4-openssl-dev

                                        Danke für deine Antwort.
                                        Hier die Ausgabe :

                                        root@buanet-iobroker1:/opt/iobroker# sudo apt update
                                        sudo: unable to resolve host buanet-iobroker1: Name or service not known
                                        Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB]
                                        Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48,4 kB] 
                                        Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44,1 kB] 
                                        Get:4 https://deb.nodesource.com/node_18.x bullseye InRelease [4.586 B] 
                                        Get:5 http://deb.debian.org/debian bullseye/main amd64 Packages [8.183 kB]
                                        Get:6 https://deb.nodesource.com/node_18.x bullseye/main amd64 Packages [776 B]
                                        Get:7 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [236 kB]
                                        Get:8 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [14,6 kB]
                                        Fetched 8.648 kB in 5s (1.761 kB/s)
                                        Reading package lists... Done
                                        Building dependency tree... Done
                                        Reading state information... Done
                                        All packages are up to date.
                                        root@buanet-iobroker1:/opt/iobroker# apt policy libcurl4-gnutls-dev libcurl4-nss-dev libcurl4-openssl-dev
                                        libcurl4-gnutls-dev:
                                          Installed: (none)
                                          Candidate: 7.74.0-1.3+deb11u7
                                          Version table:
                                             7.74.0-1.3+deb11u7 500
                                                500 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages
                                             7.74.0-1.3+deb11u3 500
                                                500 http://deb.debian.org/debian bullseye/main amd64 Packages
                                        libcurl4-nss-dev:
                                          Installed: (none)
                                          Candidate: 7.74.0-1.3+deb11u7
                                          Version table:
                                             7.74.0-1.3+deb11u7 500
                                                500 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages
                                             7.74.0-1.3+deb11u3 500
                                                500 http://deb.debian.org/debian bullseye/main amd64 Packages
                                        libcurl4-openssl-dev:
                                          Installed: (none)
                                          Candidate: 7.74.0-1.3+deb11u7
                                          Version table:
                                             7.74.0-1.3+deb11u7 500
                                                500 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages
                                             7.74.0-1.3+deb11u3 500
                                                500 http://deb.debian.org/debian bullseye/main amd64 Packages
                                        root@buanet-iobroker1:/opt/iobroker# 
                                        

                                        HM&HMIP über 100 Geräte + IoBroker auf DS918+ uvm.

                                        Thomas BraunT 1 Antwort Letzte Antwort
                                        0
                                        • KnallochseK Knallochse

                                          @thomas-braun sagte in Troubleshooting NodeJS update:

                                          apt policy libcurl4-gnutls-dev libcurl4-nss-dev libcurl4-openssl-dev

                                          Danke für deine Antwort.
                                          Hier die Ausgabe :

                                          root@buanet-iobroker1:/opt/iobroker# sudo apt update
                                          sudo: unable to resolve host buanet-iobroker1: Name or service not known
                                          Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB]
                                          Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48,4 kB] 
                                          Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44,1 kB] 
                                          Get:4 https://deb.nodesource.com/node_18.x bullseye InRelease [4.586 B] 
                                          Get:5 http://deb.debian.org/debian bullseye/main amd64 Packages [8.183 kB]
                                          Get:6 https://deb.nodesource.com/node_18.x bullseye/main amd64 Packages [776 B]
                                          Get:7 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [236 kB]
                                          Get:8 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [14,6 kB]
                                          Fetched 8.648 kB in 5s (1.761 kB/s)
                                          Reading package lists... Done
                                          Building dependency tree... Done
                                          Reading state information... Done
                                          All packages are up to date.
                                          root@buanet-iobroker1:/opt/iobroker# apt policy libcurl4-gnutls-dev libcurl4-nss-dev libcurl4-openssl-dev
                                          libcurl4-gnutls-dev:
                                            Installed: (none)
                                            Candidate: 7.74.0-1.3+deb11u7
                                            Version table:
                                               7.74.0-1.3+deb11u7 500
                                                  500 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages
                                               7.74.0-1.3+deb11u3 500
                                                  500 http://deb.debian.org/debian bullseye/main amd64 Packages
                                          libcurl4-nss-dev:
                                            Installed: (none)
                                            Candidate: 7.74.0-1.3+deb11u7
                                            Version table:
                                               7.74.0-1.3+deb11u7 500
                                                  500 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages
                                               7.74.0-1.3+deb11u3 500
                                                  500 http://deb.debian.org/debian bullseye/main amd64 Packages
                                          libcurl4-openssl-dev:
                                            Installed: (none)
                                            Candidate: 7.74.0-1.3+deb11u7
                                            Version table:
                                               7.74.0-1.3+deb11u7 500
                                                  500 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages
                                               7.74.0-1.3+deb11u3 500
                                                  500 http://deb.debian.org/debian bullseye/main amd64 Packages
                                          root@buanet-iobroker1:/opt/iobroker# 
                                          
                                          Thomas BraunT Online
                                          Thomas BraunT Online
                                          Thomas Braun
                                          Most Active
                                          schrieb am zuletzt editiert von
                                          #40

                                          @knallochse

                                          Siehste. Nix installiert, dann kann auch curl-config nicht aufgerufen werden.
                                          Ist kein nodejs-Thema, eines der Pakete muss installiert werden.

                                          Linux-Werkzeugkasten:
                                          https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                          NodeJS Fixer Skript:
                                          https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                          iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                          KnallochseK 1 Antwort Letzte Antwort
                                          1
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          767

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe