8th August 2024

How to install nodejs and pnpm!

Install nvm


```

curl -o- | bash

```


you can check last version on  node versions


```

nvm ls-remote

```


Install selected version


```

nvm install 22

```


Enable corepack


```

corepack enable

```


Confirm versions


```

$ node --version

v22.6.0

$ pnpm --version

9.6.0

```