Skip to content

Commit

Permalink
debian ajustar margenes, nodejs es-modules
Browse files Browse the repository at this point in the history
  • Loading branch information
jolav committed Nov 6, 2023
1 parent e9d4387 commit 8c80ff2
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
20 changes: 13 additions & 7 deletions docs/debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,24 @@ Para andar con ojo en las actualizaciones instalar

```sh
## Debian stable
deb https://deb.debian.org/debian/ bookworm main contrib non-free non-free-firmware
## Debian security
deb https://deb.debian.org/debian-security bookworm-security non-free contrib main non-free-firmware
deb https://deb.debian.org/debian/ bookworm main contrib non-free
non-free-firmware
## Debian security
deb https://deb.debian.org/debian-security bookworm-security non-free
contrib main non-free-firmware
## Debian updates
deb https://deb.debian.org/debian/ bookworm-updates non-free contrib main non-free-firmware
deb https://deb.debian.org/debian/ bookworm-updates non-free contrib main
non-free-firmware
## Debian backports
#deb https://deb.debian.org/debian/ bookworm-backports main contrib non-free non-free-firmware
#deb https://deb.debian.org/debian/ bookworm-backports main contrib
#non-free non-free-firmware

## Insync
deb https://apt.insync.io/debian bookworm non-free contrib

## NodeSource
deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main
#deb [signed-by=/etc/apt/keyrings/nodesource.gpg]
#https://deb.nodesource.com/ node_20.x nodistro main

## Debian Multimedia
#deb http://www.deb-multimedia.org/ bookworm main non-free
Expand All @@ -36,7 +41,8 @@ deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

# Teamviewer
#deb [signed-by=/usr/share/keyrings/teamviewer-keyring.gpg] https://linux.teamviewer.com/deb stable main
#deb [signed-by=/usr/share/keyrings/teamviewer-keyring.gpg]
#https://linux.teamviewer.com/deb stable main
```

`apt install aptitude htop smartmontools sshpass rsync curl wget nano apt-transport-https iperf zip arc arj bzip2 cabextract lzop nomarch p7zip p7zip-full pax tnef unrar-free unzip unrar deborphan net-tools intel-microcode hdparm ncdu rename iftop dns9utils nethogs tcptrack dnsutils`
Expand Down
10 changes: 10 additions & 0 deletions docs/nodejs-snippets.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

---

### ES MODULES
Hasta que sean nativos en nodejs 21.X la opcion es poner en package.json
```json
{
"type": "module"
}
```
o usar la extension mjs en lugar de js.


## HTTP Request

### GET
Expand Down

0 comments on commit 8c80ff2

Please sign in to comment.