Часто задаваемые вопросы
Why does my node_modules
folder use disk space if packages are stored in a global store?
pnpm creates hard links from the global store to the project's node_modules
folders. Жесткие ссылки указывают на то же место на диске, где находятся исходные
файлы. So, for example, if you have foo
in your project as a dependency
and it occupies 1MB of space, then it will look like it occupies 1MB of space in
the project's node_modules
folder and the same amount of space in the global
store. However, that 1MB is the same space on the disk addressed from two
different locations. So in total foo
occupies 1MB, not 2MB.
Больше по этой теме:
- Why do hard links seem to take the same space as the originals?
- A thread from the pnpm chat room
- An issue in the pnpm repo
Работает ли в Windows?
Короткий ответ: Да. Длинный ответ: использование символических ссылок в Windows, по меньшей мере, проблематично, но у есть обходной путь. For Windows, we use junctions instead.
But the nested node_modules
approach is incompatible with Windows?
Early versions of npm had issues because of nesting all node_modules
(see
this issue). Однако pnpm не создает глубоких папок, он хранит все пакеты без изменений и использует символические ссылки для создания древовидной структуры зависимостей.