User Tools

Site Tools


java-script:npm:global-local-packages

This is an old revision of the document!


Install npm packages locally vs globally

When managing dependencies in a Node.js project, you often have a choice between installing packages globally and installing them locally within a project. Both approaches have their use cases and advantages, and you can run local packages using npx without installing them globally.

Global installation

Global installation installs a package in a central location on your system, making it accessible from any directory. This is often used for command-line tools that you want to use across multiple projects.

Command to install globally:

npm install -g <package-name>

Command to run it:

<package_name>

Use case: Useful for CLI tools that you want to use across different projects.
Access: You can run the command from anywhere in your system.
Versioning: One version installed for all projects, which can lead to version conflicts if different projects require different versions.

Local installation

npx is a command-line tool that comes with npm (version 5.2.0 and higher) that allows you to run locally installed packages as if they were installed globally.

Command install locally:

npm install <package_name>

Command to run with npx:

npx <package_name>

Use case: Ideal for project-specific dependencies or when you want to try a package without installing it.
Access: You can only run the command within the project where it's installed or explicitly specify the package with npx.
Versioning: Each project can have its own version of the package, reducing conflicts.

java-script/npm/global-local-packages.1691600643.txt.gz · Last modified: 2023/08/09 20:04 by odefta