Skip to content

Documentation how to setup Node.js with Debian 11 "bullseye"

License

Notifications You must be signed in to change notification settings

rsc86/Docu-Node.js-Setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Docu-Node.js-Setup

Documentation how to setup Node.js with Debian 11 "bullseye" https://nodejs.org/ https://www.npmjs.com/ https://deb.nodesource.com/

Preparation

sudo apt update && sudo apt upgrade --show-upgraded
sudo apt install -y ca-certificates curl gnupg
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
NODE_MAJOR=20
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list

Installation

sudo apt update && sudo apt install nodejs -y

Simple Check

node -v && npm -v

About

Documentation how to setup Node.js with Debian 11 "bullseye"

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published