xxxxxxxxxx
# bash
wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.bashrc" SHELL="$(which bash)" bash -
# sh
wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh -
# dash
wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.dashrc" SHELL="$(which dash)" dash -
xxxxxxxxxx
# pnpm is shipped with corepack (part of Node.js). To enable it type:
corepack enable
# To update pnpm to the latest version:
corepack prepare pnpm@latest --activate
xxxxxxxxxx
// install in windows using powershell (from official website)
iwr https://get.pnpm.io/install.ps1 -useb | iex
xxxxxxxxxx
(Invoke-WebRequest 'https://get.pnpm.io/v6.16.js' -UseBasicParsing).Content | node - add --global pnpm
xxxxxxxxxx
<!--You also need css to change the elemants to make the breadcrumbs-->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<ul class="breadcrumb">
<li>
<a href="shopping">Shopping</a>
</li>
<li>
<a href="fashion">Fashion</a>
</li>
<li>
<a href="shoes">Shoes</a>
</li>
<li>
<a href="flats">Flats</a>
</li>
<li>
<a href="brown">Brown</a>
</li>
</ul>
</html>