feat(install): support --node-modules-dir for -g and use a manual node_modules dir for installing npm: specifiers#32302
Open
dsherret wants to merge 5 commits intodenoland:mainfrom
Open
Conversation
bartlomieju
reviewed
Feb 24, 2026
Comment on lines
+1033
to
+1046
| let mut new_flags = flags.clone(); | ||
| new_flags.initial_cwd = Some(dir.clone()); | ||
| new_flags.node_modules_dir = flags.node_modules_dir; | ||
| new_flags.internal.root_node_modules_dir_override = | ||
| Some(dir.join("node_modules")); | ||
| new_flags.config_flag = | ||
| ConfigFlag::Path(dir.join("deno.json").to_string_lossy().into_owned()); | ||
| new_flags.subcommand = DenoSubcommand::Install(InstallFlags::Local( | ||
| InstallFlagsLocal::TopLevel(InstallTopLevelFlags { | ||
| lockfile_only: false, | ||
| }), | ||
| )); | ||
|
|
||
| let new_factory = CliFactory::from_flags(Arc::new(new_flags)); |
Member
There was a problem hiding this comment.
Can you unit test this one?
bartlomieju
approved these changes
Feb 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Create a persistent
.<name>/config directory under the install bin dir (e.g.,~/.deno/bin/.cowsay/) for everydeno install -gcommand. For npm packages, this directory also containspackage.jsonandnode_modules/, enabling lifecycle scripts to run during global install.Behaviour
nodeModulesDirset?deno install -g npm:cowsaymanual)deno install -g --allow-scripts jsr:@std/http/file-servermanual)deno install -g --node-modules-dir=manual jsr:@std/http/file-servermanual)deno install -g jsr:@std/http/file-serverdeno install -g http://example.com/script.ts