27 lines
433 B
Markdown
27 lines
433 B
Markdown
## Pulumi
|
|
|
|
### Install Pulumi
|
|
|
|
```bash
|
|
curl -fsSL https://get.pulumi.com | sh
|
|
```
|
|
|
|
## Typescript
|
|
|
|
### Install node from pre-compiled binaries
|
|
|
|
```bash
|
|
cd /tmp/
|
|
wget https://nodejs.org/dist/v22.16.0/node-v22.16.0-linux-x64.tar.xz
|
|
tar xf node-v22.16.0-linux-x64.tar.xz
|
|
cp node-v22.16.0-linux-x64/bin/node ~/.local/bin/
|
|
source ~/.zshrc
|
|
```
|
|
|
|
### Install pnpm
|
|
|
|
```bash
|
|
curl -fsSL https://get.pnpm.io/install.sh | sh -
|
|
source ~/.zshrc
|
|
```
|