esm-dev / esm.sh

A fast, smart, & global CDN for modern(es2015+) web development.
https://esm.sh
MIT License
2.95k stars 143 forks source link

Question: why don't you use yarn pnp #820

Open original001 opened 2 months ago

original001 commented 2 months ago

I believe that Yarn PNP could be a better alternative for installing dependencies. It is several times faster than pnpm. You can check it on the pnpm Benchmarks.

people usualy avoid Yarn PnP due to some issues, but they are not relevant for this project. For example, absense of node_modules brings only benefits, because you don't need to store many node_modules folders and decrease free space on a disk. Also, you won't encounter problems with IDE, because you don't work with those files directly.

So, I guess, yarn pnp allows you get all benefits without encountering its issues.

What are your thoughts? Am I missing any points?