What do “idealTree” and “reify” mean in the context of npm?
The idealTree meaning is explained in the npm source code file validate-lockfile.js: // compares the inventory of package items in the tree // that is about to be installed (idealTree) with the inventory // of items stored in the package-lock file (virtualTree) An idealTree is just the tree that is about to be installed. In … Read more