Часто задаваемые вопросы
Почему моя папка node_modules
использует дисковое пространство, если пакеты хранятся в глобальном хранилище?
pnpm создает hard links из глобального хранилища на папки проекта node_modules
. Жесткие ссылки указывают на то же место на диске, где находятся исходные файлы. Так, например, если у вас есть foo
в вашем проекте в качестве зависимости и он занимает 1 МБ места, то это будет выглядеть так, как будто он занимает 1 МБ места в папке проекта node_modules
и столько же места в глобальном хранилище. However, that 1MB is the same space on the disk addressed from two different locations. Таким образом, всего foo
занимает 1 МБ, а не 2 МБ.
Больше по этой теме:
- Почему жесткие ссылки занимают столько же места, сколько и оригиналы?
- Переписка из комнаты чата pnpm
- Проблема в репозитории pnpm
Работает ли в Windows?
Короткий ответ: Да. Длинный ответ: использование символических ссылок в Windows, по меньшей мере, проблематично, но у есть обходной путь. Для Windows вместо этого мы используем точки соединения (junctions).
Но многоуровневое строение node_modules
несовместимо с Windows?
В ранних версиях npm были проблемы из-за вложенности всех node_modules
(см. это issue). Однако pnpm не создает глубоких папок, он хранит все пакеты без изменений и использует символические ссылки для создания древовидной структуры зависимостей.
А как насчет зацикленных символических ссылок?
Although pnpm uses linking to put dependencies into node_modules
folders, circular symlinks are avoided because parent packages are placed into the same node_modules
folder in which their dependencies are. So foo
's dependencies are not in foo/node_modules
, but foo
is in node_modules
together with its own dependencies.
Зачем вообще нужны жесткие ссылки? Почему бы не делать символические ссылки непосредственно к глобальному хранилищу?
Один пакет может иметь разные наборы зависимостей на одной машине.
In project A foo@1.0.0
can have a dependency resolved to bar@1.0.0
, but in project B the same dependency of foo
might resolve to bar@1.1.0
; so, pnpm hard links foo@1.0.0
to every project where it is used, in order to create different sets of dependencies for it.
Direct symlinking to the global store would work with Node's --preserve-symlinks
flag, however, that approach comes with a plethora of its own issues, so we decided to stick with hard links. For more details about why this decision was made, see this issue.
Does pnpm work across different subvolumes in one Btrfs partition?
While Btrfs does not allow cross-device hardlinks between different subvolumes in a single partition, it does permit reflinks. As a result, pnpm utilizes reflinks to share data between these subvolumes.
Does pnpm work across multiple drives or filesystems?
The package store should be on the same drive and filesystem as installations, otherwise packages will be copied, not linked. This is due to a limitation in how hard linking works, in that a file on one filesystem cannot address a location in another. See Issue #712 for more details.
pnpm functions differently in the 2 cases below: