feat: add nodejs and npm setup

This commit is contained in:
dancingCycle 2022-02-12 12:21:15 -05:00
parent af502fb1e8
commit 99a2c908f7
3 changed files with 23 additions and 1 deletions

View File

@ -14,7 +14,8 @@ Documentation for artitrary setups
* [Connect To GitHub Using SSH](doc/connect-github-ssh.md)
* [Connect To VPN](doc/connect-vpn.md)
* [Setup RDP Client](doc/setup-rdc.md)
* [Setup PM2 For Debian](doc/setup-pm2.md)
* [Setup PM2](doc/setup-pm2.md)
* [Setup NPM](doc/setup-npm.md)
* To-do List
* gitk
* Java

16
doc/setup-npm.md Normal file
View File

@ -0,0 +1,16 @@
# Setup NPM
* update Apt repository cache
```
sudo apt update
```
* upgrade packages
```
sudo apt upgrade
```
* install node.js and npm
```
sudo apt-get install nodejs npm --no-install-recommends
```

5
doc/setup-npm.md.license Normal file
View File

@ -0,0 +1,5 @@
/*
* SPDX-FileCopyrightText: 2022 Software Ingenieur Begerad <swingbe.de>
*
* SPDX-License-Identifier: CC0-1.0
*/