Linux Mint 21-xfce

Vanessa - Ubuntu Jammy - Long term support release (LTS), supported until April 2027.

2022-12-20

NPM

Co to je?

  • Node.js® is an open-source, cross-platform JavaScript runtime environment.
  • npm is two things: first and foremost, it is an online repository for the publishing of open-source Node.js projects; second, it is a command-line utility for interacting with said repository that aids in package installation, version management, and dependency management.

celý článek

Velký problém s instalací. Nepotkávají se verze. NPM by měl být verze 14, a ta nemusí fungovat na nové verzi linuxu (například mint 21.1)

test

node --version

npm install

Install Docker

Ověření závislostí

sudo apt update
sudo apt -y install apt-transport-https ca-certificates curl software-properties-common
sudo apt -y remove docker docker-engine docker.io containerd runc
TOP