npm 使用package.json在全局和本地安装依赖项

sauutmhj  于 2022-11-14  发布在  其他
关注(0)|答案(7)|浏览(256)

使用npm,我们可以使用-g选项全局安装模块。我们如何在package.json文件中执行此操作?
假设,这些是我在package.json文件中的依赖项

"dependencies": {
    "mongoose": "1.4.0",
    "node.io" : "0.3.3",
    "jquery"  : "1.5.1",
    "jsdom"   : "0.2.0",
    "cron"    : "0.1.2"
  }

当我运行npm install时,我只想全局安装node.io,其余的都应该本地安装。有没有这样的选项?

hm2xizp9

hm2xizp91#

**新注解:**您可能不想或不需要这样做。您可能想做的是将构建/测试等的这些类型的命令依赖项放在package.json的devDependencies部分中。任何时候您使用package.json中scripts中的内容时,您的devDependencies命令(在node_modules/.bin中)的行为就像它们在您的路径中一样。

例如:

npm i --save-dev mocha # Install test runner locally
npm i --save-dev babel # Install current babel locally

接着又在包强生身上:

// devDependencies has mocha and babel now

"scripts": {
  "test": "mocha",
  "build": "babel -d lib src",
  "prepublish": "babel -d lib src"
}

然后,在命令提示符下,您可以运行:

npm run build # finds babel
npm test # finds mocha

npm publish # will run babel first

新的新笔记:现在我们已经有了npx,它允许你运行devDependencies命令,而不需要将它们添加到你的scripts部分(如果你愿意)。例如:

npx webpack
  • 但是 * 如果 * 您 * 真的 * 想进行全局安装,您可以在package.json的scripts部分添加一个preinstall:
"scripts": {
  "preinstall": "npm i -g themodule"
}

所以实际上我的npm安装再次执行npm安装..这很奇怪,但似乎有效。

**注意:**如果您使用的是npm的最常见安装,其中全局节点包安装了所需的sudo,则可能会遇到问题。一个选项是更改您的npm配置,这样就不需要这样做了:

npm config set prefix ~/npm,通过将export PATH=$HOME/npm/bin:$PATH附加到您的~/.bashrc,将$HOME/npm/bin添加到$PATH。
另一个可能更好的选择是只使用nvm来管理节点,这样就不会有这个问题。

rta7y2nd

rta7y2nd2#

鉴于下述缺点,我建议遵循可接受的答案:

使用npm install --save-dev [package_name],然后使用以下命令执行脚本:

$ npm run lint
$ npm run build
$ npm test

我的原创但不推荐答案如下。
您可以将软件包添加到devDependencies--save-dev)中,然后从项目中的任意位置运行二进制文件,而不是使用全局安装:

"$(npm bin)/<executable_name>" <arguments>...

在您的情况下:

"$(npm bin)"/node.io --help

这个工程师提供了一个npm-exec别名作为快捷方式。这个工程师使用了一个名为env.sh的shell脚本。但是我更喜欢直接使用$(npm bin),以避免任何额外的文件或设置。
虽然它会使每个调用稍大一些,但它***应该只是起作用***,防止:

  • 可能与全局软件包(@nalply)存在相关性冲突
  • sudo的需求
  • 需要设置一个npm前缀(尽管我还是建议使用一个)

缺点:

  • $(npm bin)无法在Windows上运行。
  • 开发树中更深层次的工具不会出现在npm bin文件夹中。(安装npm-runnpm-which可以找到它们。)

看起来一个更好的解决方案是将常见任务(如构建和缩小)放在package.json的“scripts”部分,如上面的Jason所演示的。

tpxzln5u

tpxzln5u3#

这是一个有点老,但我遇到了要求,所以这里是我想出的解决方案。

问题:

我们的开发团队维护着许多.NET Web应用程序产品,我们正在将其迁移到AngularJS/Bootstrap。VS2010并不适合于自定义构建过程,我的开发人员经常在我们产品的多个版本上工作。我们的VCS是Subversion(我知道,我知道。我正在尝试转移到Git,但我讨厌的营销人员是如此苛刻)和一个单一的VS解决方案将包括几个独立的项目。我需要我的员工有一个通用的方法来初始化他们的开发环境,而不必在同一台机器上多次安装相同的节点包(gulp、bower等)。

TL;DR:

1.需要“npm install”来安装全局Node/Bower开发环境以及.NET产品所需的所有本地软件包。
1.只有在尚未安装全局软件包时,才应安装全局软件包。
1.必须自动创建指向全局程序包的本地链接。

解决方案:

我们已经有了一个所有开发人员和所有产品共享的通用开发框架,因此我创建了一个NodeJS脚本,以便在需要时安装全局包并创建本地链接。该脚本位于相对于产品基本文件夹的“....\SharedFiles”中:

/*******************************************************************************
* $Id: npm-setup.js 12785 2016-01-29 16:34:49Z sthames $
* ==============================================================================
* Parameters: 'links' - Create links in local environment, optional.
* 
* <p>NodeJS script to install common development environment packages in global
* environment. <c>packages</c> object contains list of packages to install.</p>
* 
* <p>Including 'links' creates links in local environment to global packages.</p>
* 
* <p><b>npm ls -g --json</b> command is run to provide the current list of 
* global packages for comparison to required packages. Packages are installed 
* only if not installed. If the package is installed but is not the required 
* package version, the existing package is removed and the required package is 
* installed.</p>.
*
* <p>When provided as a "preinstall" script in a "package.json" file, the "npm
* install" command calls this to verify global dependencies are installed.</p>
*******************************************************************************/
var exec = require('child_process').exec;
var fs   = require('fs');
var path = require('path');

/*---------------------------------------------------------------*/
/* List of packages to install and 'from' value to pass to 'npm  */
/* install'. Value must match the 'from' field in 'npm ls -json' */
/* so this script will recognize a package is already installed. */
/*---------------------------------------------------------------*/
var packages = 
  {
  "bower"                      :                      "bower@1.7.2", 
  "event-stream"               :               "event-stream@3.3.2",
  "gulp"                       :                       "gulp@3.9.0",
  "gulp-angular-templatecache" : "gulp-angular-templatecache@1.8.0",
  "gulp-clean"                 :                 "gulp-clean@0.3.1", 
  "gulp-concat"                :                "gulp-concat@2.6.0",
  "gulp-debug"                 :                 "gulp-debug@2.1.2",
  "gulp-filter"                :                "gulp-filter@3.0.1",
  "gulp-grep-contents"         :         "gulp-grep-contents@0.0.1",
  "gulp-if"                    :                    "gulp-if@2.0.0", 
  "gulp-inject"                :                "gulp-inject@3.0.0", 
  "gulp-minify-css"            :            "gulp-minify-css@1.2.3",
  "gulp-minify-html"           :           "gulp-minify-html@1.0.5",
  "gulp-minify-inline"         :         "gulp-minify-inline@0.1.1",
  "gulp-ng-annotate"           :           "gulp-ng-annotate@1.1.0",
  "gulp-processhtml"           :           "gulp-processhtml@1.1.0",
  "gulp-rev"                   :                   "gulp-rev@6.0.1",
  "gulp-rev-replace"           :           "gulp-rev-replace@0.4.3",
  "gulp-uglify"                :                "gulp-uglify@1.5.1",
  "gulp-useref"                :                "gulp-useref@3.0.4",
  "gulp-util"                  :                  "gulp-util@3.0.7",
  "lazypipe"                   :                   "lazypipe@1.0.1",
  "q"                          :                          "q@1.4.1",
  "through2"                   :                   "through2@2.0.0",

  /*---------------------------------------------------------------*/
  /* fork of 0.2.14 allows passing parameters to main-bower-files. */
  /*---------------------------------------------------------------*/
  "bower-main"                 : "git+https://github.com/Pyo25/bower-main.git" 
  }

/*******************************************************************************
* run */
/**
* Executes <c>cmd</c> in the shell and calls <c>cb</c> on success. Error aborts.
* 
* Note: Error code -4082 is EBUSY error which is sometimes thrown by npm for 
* reasons unknown. Possibly this is due to antivirus program scanning the file 
* but it sometimes happens in cases where an antivirus program does not explain 
* it. The error generally will not happen a second time so this method will call 
* itself to try the command again if the EBUSY error occurs.
* 
* @param  cmd  Command to execute.
* @param  cb   Method to call on success. Text returned from stdout is input.
*******************************************************************************/
var run = function(cmd, cb)
  {
  /*---------------------------------------------*/
  /* Increase the maxBuffer to 10MB for commands */
  /* with a lot of output. This is not necessary */
  /* with spawn but it has other issues.         */
  /*---------------------------------------------*/
  exec(cmd, { maxBuffer: 1000*1024 }, function(err, stdout)
    {
    if      (!err)                   cb(stdout);
    else if (err.code | 0 == -4082) run(cmd, cb);
    else throw err;
    });
  };

/*******************************************************************************
* runCommand */
/**
* Logs the command and calls <c>run</c>.
*******************************************************************************/
var runCommand = function(cmd, cb)
  {
  console.log(cmd);
  run(cmd, cb);
  }

/*******************************************************************************
* Main line
*******************************************************************************/
var doLinks  = (process.argv[2] || "").toLowerCase() == 'links';
var names    = Object.keys(packages);
var name;
var installed;
var links;

/*------------------------------------------*/
/* Get the list of installed packages for   */
/* version comparison and install packages. */
/*------------------------------------------*/
console.log('Configuring global Node environment...')
run('npm ls -g --json', function(stdout)
  {
  installed = JSON.parse(stdout).dependencies || {};
  doWhile();
  });

/*--------------------------------------------*/
/* Start of asynchronous package installation */
/* loop. Do until all packages installed.     */
/*--------------------------------------------*/
var doWhile = function()
  {
  if (name = names.shift())
    doWhile0();
  }

var doWhile0 = function()
  {
  /*----------------------------------------------*/
  /* Installed package specification comes from   */
  /* 'from' field of installed packages. Required */
  /* specification comes from the packages list.  */
  /*----------------------------------------------*/
  var current  = (installed[name] || {}).from;
  var required =   packages[name];

  /*---------------------------------------*/
  /* Install the package if not installed. */
  /*---------------------------------------*/
  if (!current)
    runCommand('npm install -g '+required, doWhile1);

  /*------------------------------------*/
  /* If the installed version does not  */
  /* match, uninstall and then install. */
  /*------------------------------------*/
  else if (current != required)
    {
    delete installed[name];
    runCommand('npm remove -g '+name, function() 
      {
      runCommand('npm remove '+name, doWhile0);
      });
    }

  /*------------------------------------*/
  /* Skip package if already installed. */
  /*------------------------------------*/
  else
    doWhile1();
  };

var doWhile1 = function()
  {
  /*-------------------------------------------------------*/
  /* Create link to global package from local environment. */
  /*-------------------------------------------------------*/
  if (doLinks && !fs.existsSync(path.join('node_modules', name)))
    runCommand('npm link '+name, doWhile);
  else
    doWhile();
  };

现在,如果我想为我们的开发人员更新一个全局工具,我会更新“packages”对象并签入新脚本。我的开发人员 checkout 它,然后使用“node npm-setup.js”或“npm install”从任何正在开发的产品中运行它,以更新全局环境。整个过程需要5分钟。
此外,要为新开发人员配置环境,他们必须首先只安装NodeJS和GIT for Windows,重新启动计算机,检查“共享文件”文件夹和任何正在开发的产品,然后开始工作。
.NET产品的“package.json”在安装之前调用此脚本:

{ 
"name"                    : "Books",
"description"             : "Node (npm) configuration for Books Database Web Application Tools",
"version"                 : "2.1.1",
"private"                 : true,
"scripts":
  {
  "preinstall"            : "node ../../SharedFiles/npm-setup.js links",
  "postinstall"           : "bower install"
  },
"dependencies": {}
}

备注

  • 请注意,即使在Windows环境中,脚本引用也需要使用正斜杠。
  • “npm ls”将为本地链接的所有包给予“npm ERR!executous:“消息,因为它们没有列在“package.json”“dependencies”中。
    2016年1月29日编辑

上面更新的npm-setup.js脚本已修改如下:

  • var packages中的软件包“version”现在是在命令行中传递给npm install的“package”值。这一点已更改为允许从注册的系统信息库以外的其他位置安装软件包。
  • 如果软件包已安装,但不是所请求的软件包,则删除现有软件包并安装正确的软件包。
  • 由于未知的原因,npm在执行安装或链接时会定期抛出EBUSY错误(-4082)。此错误被捕获并重新执行命令。此错误很少再次发生,似乎总是会被清除。
axkjgtzd

axkjgtzd4#

您可以使用一个单独的文件,如npm_globals.txt,而不是package.json

mongoose@1.4.0
node.io@0.3.3
jquery@1.5.1
jsdom@0.2.0
cron@0.1.2

然后在命令行中运行、

< npm_globals.txt xargs npm install -g

检查它们是否正确安装,

npm list -g --depth=0

至于你是否应该这样做,我认为这完全取决于用例,对于大多数项目来说,这是没有必要的;并且让项目的package.json将这些工具和依赖项封装在一起是更好的选择。
但是现在我发现当我在一台新机器上运行时,我总是在全局安装create-react-app和其他CLI。当版本控制不太重要时,有一个简单的方法来安装全局工具及其依赖项是很好的。
现在,我使用npxan npm package runner,而不是全局安装软件包。

t2a7ltrp

t2a7ltrp5#

构建您自己的脚本来安装全局依赖项。这并不需要太多。package.json是相当可扩展的。

const { execSync } = require('child_process');
const fs = require('fs');

const package = JSON.parse(fs.readFileSync('package.json'));

let keys = Object.keys(package.dependencies);
let values = Object.values(package.dependencies);

for (let index = 0; index < keys.length; index++) {
    const key = keys[index];
    let value = values[index].replace("~", "").replace("^", "");

    console.log(`Installing: ${key}@${value} globally`,);
    execSync('npm i -g ' + `${key}@${value}`);
}

使用上面的,你甚至可以使它内联,下面!
请看下面的预安装:

{
  "name": "Project Name",
  "version": "0.1.0",
  "description": "Project Description",
  "main": "app.js",
  "scripts": {
    "preinstall": "node -e \"const {execSync} = require('child_process'); JSON.parse(fs.readFileSync('package.json')).globalDependencies.forEach(globaldep => execSync('npm i -g ' + globaldep));\"",
    "build": "your transpile/compile script",
    "start": "node app.js",
    "test": "./node_modules/.bin/mocha --reporter spec",
    "patch-release": "npm version patch && npm publish && git add . && git commit -m \"auto-commit\" && git push --follow-tags"
  },
  "dependencies": [
  },
  "globalDependencies": [
    "cordova@8.1.2",
    "ionic",
    "potato"
  ],
  "author": "author",
  "license": "MIT",
  "devDependencies": {
    "chai": "^4.2.0",
    "mocha": "^5.2.0"
  },
  "bin": {
    "app": "app.js"
  }
}

节点的作者可能不承认package.json是一个项目文件,但它确实是。

pgvzfuti

pgvzfuti6#

package.json中的所有模块都安装到./node_modules/中
我找不到明确说明,但这是NPM的package.json参考。

gorkyyrv

gorkyyrv7#

如果项目依赖项安装在项目文件夹之外,如果其他人删除或替换您的包或更改文件夹权限,代码可能会中断。
将所有内容都放在一个文件夹中更耐用,并使系统可预测和维护任务更容易。

相关问题